summaryrefslogtreecommitdiff
path: root/crypto/comp
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-04-12 12:20:16 +0100
committerMatt Caswell <matt@openssl.org>2016-04-13 08:59:03 +0100
commitb3599dbb6af7e28efae5f08ace99cc75f5e90b2f (patch)
tree186ce0f1525098cb18868274a2d32968a4e30945 /crypto/comp
parent974eeb93e3549d378d2c20276a51e2de21d50622 (diff)
downloadopenssl-new-b3599dbb6af7e28efae5f08ace99cc75f5e90b2f.tar.gz
Rename int_*() functions to *_int()
There is a preference for suffixes to indicate that a function is internal rather than prefixes. Note: the suffix is only required to disambiguate internal functions and public symbols with the same name (but different case) Reviewed-by: Tim Hudson <tjh@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
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 43d70ce876..20376b6451 100644
--- a/crypto/comp/c_zlib.c
+++ b/crypto/comp/c_zlib.c
@@ -282,7 +282,7 @@ COMP_METHOD *COMP_zlib(void)
zlib_loaded++;
if (!OPENSSL_init_crypto(OPENSSL_INIT_ZLIB, NULL)) {
- int_comp_zlib_cleanup();
+ comp_zlib_cleanup_int();
return meth;
}
if (zlib_loaded)
@@ -297,7 +297,7 @@ COMP_METHOD *COMP_zlib(void)
return (meth);
}
-void int_comp_zlib_cleanup(void)
+void comp_zlib_cleanup_int(void)
{
#ifdef ZLIB_SHARED
if (zlib_dso != NULL)