diff options
author | Martin Willi <martin@strongswan.org> | 2009-09-04 13:46:09 +0200 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2009-09-04 13:46:09 +0200 |
commit | 7daf5226b74e14a6e0f1a888b0be26f3d246f9f8 (patch) | |
tree | 6436de2e84e7a677ecfb83db4bf44766cc273d9f /src/libstrongswan/credentials/credential_factory.h | |
parent | 7d1b0304467bc668b592ccd6680fd9615efbb5b2 (diff) | |
download | strongswan-7daf5226b74e14a6e0f1a888b0be26f3d246f9f8.tar.bz2 strongswan-7daf5226b74e14a6e0f1a888b0be26f3d246f9f8.tar.xz |
removed trailing spaces ([[:space:]]+$)
Diffstat (limited to 'src/libstrongswan/credentials/credential_factory.h')
-rw-r--r-- | src/libstrongswan/credentials/credential_factory.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/libstrongswan/credentials/credential_factory.h b/src/libstrongswan/credentials/credential_factory.h index 69a55cf36..20a13db65 100644 --- a/src/libstrongswan/credentials/credential_factory.h +++ b/src/libstrongswan/credentials/credential_factory.h @@ -47,7 +47,7 @@ extern enum_name_t *credential_type_names; * Manages credential construction functions and creates instances. */ struct credential_factory_t { - + /** * Create a credential using a list of builder_part_t's. * @@ -64,12 +64,12 @@ struct credential_factory_t { */ void* (*create)(credential_factory_t *this, credential_type_t type, int subtype, ...); - + /** * Create an enumerator for a builder type. * - * The build() method has to be called on each enumerated builder to - * cleanup associated ressources. + * The build() method has to be called on each enumerated builder to + * cleanup associated ressources. * * @param type type of credentials the builder creates * @param subtype type specific subtype, such as certificate_type_t @@ -77,7 +77,7 @@ struct credential_factory_t { */ enumerator_t* (*create_builder_enumerator)(credential_factory_t *this, credential_type_t type, int subtype); - + /** * Register a builder_t constructor function. * @@ -85,16 +85,16 @@ struct credential_factory_t { * @param constructor builder constructor function to register */ void (*add_builder)(credential_factory_t *this, - credential_type_t type, int subtype, + credential_type_t type, int subtype, builder_constructor_t constructor); /** * Unregister a builder_t constructor function. * * @param constructor constructor function to unregister. */ - void (*remove_builder)(credential_factory_t *this, + void (*remove_builder)(credential_factory_t *this, builder_constructor_t constructor); - + /** * Destroy a credential_factory instance. */ |