From: Richard Levitte Date: Wed, 20 Mar 2019 09:18:13 +0000 (+0100) Subject: OPENSSL_config(): restore error agnosticism X-Git-Tag: openssl-3.0.0-alpha1~2321 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=905c9a72a708701597891527b422c7f374125c52 OPENSSL_config(): restore error agnosticism Great effort has been made to make initialization more configurable. However, the behavior of OPENSSL_config() was lost in the process, having it suddenly generate errors it didn't previously, which is not how it's documented to behave. A simple setting of default flags fixes this problem. Fixes #8528 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/8533) --- diff --git a/crypto/conf/conf_sap.c b/crypto/conf/conf_sap.c index 38621db3c8..3994a86395 100644 --- a/crypto/conf/conf_sap.c +++ b/crypto/conf/conf_sap.c @@ -35,6 +35,7 @@ void OPENSSL_config(const char *appname) memset(&settings, 0, sizeof(settings)); if (appname != NULL) settings.appname = strdup(appname); + settings.flags = DEFAULT_CONF_MFLAGS; OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, &settings); } #endif