From: Matt Caswell Date: Wed, 31 Jul 2019 13:12:15 +0000 (+0100) Subject: Add a CHANGES entry about loading the config file by default X-Git-Tag: openssl-3.0.0-alpha1~1681 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=8b9575ba376ecfac7834102ad0c61fd70aeb8934 Add a CHANGES entry about loading the config file by default Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/9492) --- diff --git a/CHANGES b/CHANGES index dd230d60b5..6fbfe0d666 100644 --- a/CHANGES +++ b/CHANGES @@ -9,6 +9,12 @@ Changes between 1.1.1 and 3.0.0 [xx XXX xxxx] + *) Changed the library initialisation so that the config file is now loaded + by default. This was already the case for libssl. It now occurs for both + libcrypto and libssl. Use the OPENSSL_INIT_NO_LOAD_CONFIG option to + OPENSSL_init_crypto() to suppress automatic loading of a config file. + [Matt Caswell] + *) Introduced new error raising macros, ERR_raise() and ERR_raise_data(), where the former acts as a replacement for ERR_put_error(), and the latter replaces the combination ERR_put_error()+ERR_add_error_data().