diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-24 11:30:19 +0000 |
commit | 5796aa164d79b2ffaf2839b281d490be6a72d1d8 (patch) | |
tree | 4031a623426b19bf03b2c61cd73a504e218fb1fb /Source/charon/utils/tester.c | |
parent | 95c61cb956505cdb0a91c8c8cd134dda3aac744d (diff) | |
download | strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.bz2 strongswan-5796aa164d79b2ffaf2839b281d490be6a72d1d8.tar.xz |
- typedefs changed
Diffstat (limited to 'Source/charon/utils/tester.c')
-rw-r--r-- | Source/charon/utils/tester.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Source/charon/utils/tester.c b/Source/charon/utils/tester.c index 074224076..77e9c7728 100644 --- a/Source/charon/utils/tester.c +++ b/Source/charon/utils/tester.c @@ -32,13 +32,14 @@ #include <utils/linked_list.h> #include <queues/job_queue.h> + +typedef struct private_tester_t private_tester_t; + /** - * @brief Private Variables and Functions of tester class + * @brief Private Variables and Functions of tester class. * */ -typedef struct private_tester_s private_tester_t; - -struct private_tester_s { +struct private_tester_t { tester_t public; |