[openssl] OpenSSL_1_1_1-stable update
Richard Levitte
levitte at openssl.org
Wed Mar 20 13:25:48 UTC 2019
The branch OpenSSL_1_1_1-stable has been updated
via 9933d4a06bd0a0b5b757f072944e8cd54d4bddd3 (commit)
from 20a8bce4bb70a3c4bfc69035c703fcdf8dcbc6cf (commit)
- Log -----------------------------------------------------------------
commit 9933d4a06bd0a0b5b757f072944e8cd54d4bddd3
Author: Richard Levitte <levitte at openssl.org>
Date: Wed Mar 20 10:18:13 2019 +0100
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 <matt at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/8533)
(cherry picked from commit 905c9a72a708701597891527b422c7f374125c52)
-----------------------------------------------------------------------
Summary of changes:
crypto/conf/conf_sap.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/crypto/conf/conf_sap.c b/crypto/conf/conf_sap.c
index 2ce42f0..3805c42 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
More information about the openssl-commits
mailing list