diff options
author | Martin Willi <martin@revosec.ch> | 2010-09-03 18:09:48 +0200 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2010-09-03 18:09:48 +0200 |
commit | d987946e803e66d954c5f8a1f264c8726fd41c02 (patch) | |
tree | 065de7e0c9dd90dfee4a49fd5f17a89fe67a9852 /src/libstrongswan/plugins/pubkey/pubkey_plugin.c | |
parent | f9c0cf862cc8d1366e9bba0d18ebce947bb3ccaa (diff) | |
download | strongswan-d987946e803e66d954c5f8a1f264c8726fd41c02.tar.bz2 strongswan-d987946e803e66d954c5f8a1f264c8726fd41c02.tar.xz |
Added a final flag to builder registration to enumerate the actually supported algorithms
Diffstat (limited to 'src/libstrongswan/plugins/pubkey/pubkey_plugin.c')
-rw-r--r-- | src/libstrongswan/plugins/pubkey/pubkey_plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstrongswan/plugins/pubkey/pubkey_plugin.c b/src/libstrongswan/plugins/pubkey/pubkey_plugin.c index b0eabc9ee..6f41ada2a 100644 --- a/src/libstrongswan/plugins/pubkey/pubkey_plugin.c +++ b/src/libstrongswan/plugins/pubkey/pubkey_plugin.c @@ -50,7 +50,7 @@ plugin_t *pubkey_plugin_create() this->public.plugin.destroy = (void(*)(plugin_t*))destroy; - lib->creds->add_builder(lib->creds, CRED_CERTIFICATE, CERT_TRUSTED_PUBKEY, + lib->creds->add_builder(lib->creds, CRED_CERTIFICATE, CERT_TRUSTED_PUBKEY, FALSE, (builder_function_t)pubkey_cert_wrap); return &this->public.plugin; |