diff options
author | Jan Hutter <jhutter@hsr.ch> | 2005-11-24 09:17:51 +0000 |
---|---|---|
committer | Jan Hutter <jhutter@hsr.ch> | 2005-11-24 09:17:51 +0000 |
commit | 95c61cb956505cdb0a91c8c8cd134dda3aac744d (patch) | |
tree | 0aa9591a9f5d900fea41a48778956f07f2d5b0b3 /Source/charon/encoding/payloads/transform_attribute.c | |
parent | 1f9c9180e4afb43d0bec63b5e63146e08f41652a (diff) | |
download | strongswan-95c61cb956505cdb0a91c8c8cd134dda3aac744d.tar.bz2 strongswan-95c61cb956505cdb0a91c8c8cd134dda3aac744d.tar.xz |
changed enum and structs names to _t
Diffstat (limited to 'Source/charon/encoding/payloads/transform_attribute.c')
-rw-r--r-- | Source/charon/encoding/payloads/transform_attribute.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/charon/encoding/payloads/transform_attribute.c b/Source/charon/encoding/payloads/transform_attribute.c index 9aed1e332..f949fca9c 100644 --- a/Source/charon/encoding/payloads/transform_attribute.c +++ b/Source/charon/encoding/payloads/transform_attribute.c @@ -31,13 +31,13 @@ #include <types.h> #include <utils/allocator.h> +typedef struct private_transform_attribute_t private_transform_attribute_t; + /** * Private data of an transform_attribute_t Object * */ -typedef struct private_transform_attribute_s private_transform_attribute_t; - -struct private_transform_attribute_s { +struct private_transform_attribute_t { /** * public transform_attribute_t interface */ |