aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/config/policy.c
diff options
context:
space:
mode:
authorMartin Willi <martin@strongswan.org>2006-04-10 08:07:38 +0000
committerMartin Willi <martin@strongswan.org>2006-04-10 08:07:38 +0000
commit5113680f95e522c677cdd37072cfffbdca06831e (patch)
tree973ac57accbc66b042e5307942c6cbbbf4f19579 /Source/charon/config/policy.c
parent6862128151fb78f63685a8da5575783c426d64a7 (diff)
downloadstrongswan-5113680f95e522c677cdd37072cfffbdca06831e.tar.bz2
strongswan-5113680f95e522c677cdd37072cfffbdca06831e.tar.xz
- split up in libstrong, charon, stroke, testing done
- new leak detective with malloc hook in library - useable, but needs improvements - logger_manager has now a single instance per library - allows use of loggers from any linking prog - a LOT of other things
Diffstat (limited to 'Source/charon/config/policy.c')
-rw-r--r--Source/charon/config/policy.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/charon/config/policy.c b/Source/charon/config/policy.c
index fbdc46def..cff87fc6b 100644
--- a/Source/charon/config/policy.c
+++ b/Source/charon/config/policy.c
@@ -23,7 +23,6 @@
#include "policy.h"
#include <utils/linked_list.h>
-#include <utils/allocator.h>
#include <utils/identification.h>
#include <utils/logger.h>
@@ -310,7 +309,7 @@ static status_t destroy(private_policy_t *this)
this->my_id->destroy(this->my_id);
this->other_id->destroy(this->other_id);
- allocator_free(this);
+ free(this);
return SUCCESS;
}
@@ -363,7 +362,7 @@ static policy_t *clone(private_policy_t *this)
*/
policy_t *policy_create(identification_t *my_id, identification_t *other_id)
{
- private_policy_t *this = allocator_alloc_thing(private_policy_t);
+ private_policy_t *this = malloc_thing(private_policy_t);
/* public functions */
this->public.get_my_id = (identification_t*(*)(policy_t*))get_my_id;