summaryrefslogtreecommitdiff
path: root/CHANGES
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2019-07-31 14:12:15 +0100
committerMatt Caswell <matt@openssl.org>2019-08-01 09:59:20 +0100
commit8b9575ba376ecfac7834102ad0c61fd70aeb8934 (patch)
tree178d30e2f96f51894e422722a92aae50486ee7ad /CHANGES
parent109ef7ae43c9bce336f0bc2b8163328363a26f27 (diff)
downloadopenssl-new-8b9575ba376ecfac7834102ad0c61fd70aeb8934.tar.gz
Add a CHANGES entry about loading the config file by default
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9492)
Diffstat (limited to 'CHANGES')
-rw-r--r--CHANGES6
1 files changed, 6 insertions, 0 deletions
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().