From d5fb5d1a107696bee4657cd62e568b4bd3bb49ed Mon Sep 17 00:00:00 2001 From: beck <> Date: Mon, 19 Mar 2018 03:56:08 +0000 Subject: I should not be calling ENGINE_load_builtin_engines_internal here, just the normal version. ok jsing@ --- src/lib/libcrypto/conf/conf_sap.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/lib') diff --git a/src/lib/libcrypto/conf/conf_sap.c b/src/lib/libcrypto/conf/conf_sap.c index 98497025ee..827cf96e74 100644 --- a/src/lib/libcrypto/conf/conf_sap.c +++ b/src/lib/libcrypto/conf/conf_sap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conf_sap.c,v 1.13 2018/03/19 03:35:38 beck Exp $ */ +/* $OpenBSD: conf_sap.c,v 1.14 2018/03/19 03:56:08 beck Exp $ */ /* Written by Stephen Henson (steve@openssl.org) for the OpenSSL * project 2001. */ @@ -80,15 +80,13 @@ static pthread_once_t openssl_configured = PTHREAD_ONCE_INIT; static const char *openssl_config_name; -void ENGINE_load_builtin_engines_internal(void); - static void OPENSSL_config_internal(void) { OPENSSL_load_builtin_modules(); #ifndef OPENSSL_NO_ENGINE /* Need to load ENGINEs */ - ENGINE_load_builtin_engines_internal(); + ENGINE_load_builtin_engines(); #endif /* Add others here? */ -- cgit v1.2.3-55-g6feb