From 5113680f95e522c677cdd37072cfffbdca06831e Mon Sep 17 00:00:00 2001 From: Martin Willi Date: Mon, 10 Apr 2006 08:07:38 +0000 Subject: - 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 --- Source/testing/packet_test.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'Source/testing/packet_test.c') diff --git a/Source/testing/packet_test.c b/Source/testing/packet_test.c index 9ba099cd2..fdb195ec1 100644 --- a/Source/testing/packet_test.c +++ b/Source/testing/packet_test.c @@ -26,7 +26,6 @@ #include #include -#include #include @@ -41,7 +40,7 @@ void test_packet(protected_tester_t *tester) char *string_to_copy = "aha, soso"; data.len = strlen(string_to_copy) + 1; - data.ptr = allocator_alloc(data.len); + data.ptr = malloc(data.len); memcpy(data.ptr, string_to_copy, data.len); packet->set_data(packet, data); -- cgit v1.2.3