summaryrefslogtreecommitdiffstats
path: root/engines
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-05-15 15:58:38 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-05-15 15:58:38 +0000
commit676cd3a2832a59cb12d973632202fcbfc18c8887 (patch)
tree0a5fa8833e85d44376752efab56c686d8a228108 /engines
parentc6ead3cdd387d3907f0fcbc6edd80cdf22834a61 (diff)
new flag to stop ENGINE methods being registered
Diffstat (limited to 'engines')
-rw-r--r--engines/e_capi.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/e_capi.c b/engines/e_capi.c
index 24b620fc07..ea626c9975 100644
--- a/engines/e_capi.c
+++ b/engines/e_capi.c
@@ -522,6 +522,7 @@ static int bind_capi(ENGINE *e)
{
if (!ENGINE_set_id(e, engine_capi_id)
|| !ENGINE_set_name(e, engine_capi_name)
+ || !ENGINE_set_flags(e, ENGINE_FLAGS_NO_REGISTER_ALL)
|| !ENGINE_set_init_function(e, capi_init)
|| !ENGINE_set_finish_function(e, capi_finish)
|| !ENGINE_set_destroy_function(e, capi_destroy)