summaryrefslogtreecommitdiff
path: root/crypto/comp
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2021-03-09 11:36:36 +1000
committerShane Lontis <shane.lontis@oracle.com>2021-03-18 17:52:37 +1000
commitf148f7034c9e2f9155ca4a8e51cbe7af02f8600a (patch)
treeae4d11118b29bb1a635194753cfc37f9d5cf43f5 /crypto/comp
parent054d43ff972068a0f2ec07319808ca32ad0afb5f (diff)
downloadopenssl-new-f148f7034c9e2f9155ca4a8e51cbe7af02f8600a.tar.gz
Add ossl_ conf symbols
Partial fix for #12964 Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14473)
Diffstat (limited to 'crypto/comp')
-rw-r--r--crypto/comp/c_zlib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/comp/c_zlib.c b/crypto/comp/c_zlib.c
index 6d893c0c80..aa2986266e 100644
--- a/crypto/comp/c_zlib.c
+++ b/crypto/comp/c_zlib.c
@@ -244,7 +244,7 @@ COMP_METHOD *COMP_zlib(void)
zlib_loaded++;
if (!OPENSSL_init_crypto(OPENSSL_INIT_ZLIB, NULL)) {
- comp_zlib_cleanup_int();
+ ossl_comp_zlib_cleanup();
return meth;
}
if (zlib_loaded)
@@ -259,7 +259,7 @@ COMP_METHOD *COMP_zlib(void)
return meth;
}
-void comp_zlib_cleanup_int(void)
+void ossl_comp_zlib_cleanup(void)
{
#ifdef ZLIB_SHARED
DSO_free(zlib_dso);