diff options
author | Matt Caswell <matt@openssl.org> | 2016-04-06 11:39:00 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-04-13 09:52:34 +0200 |
commit | 342c21cd8bb42b6750abfc49cac26dc288de98c3 (patch) | |
tree | 39edffbda0bcf71d4eea518a5f0a9138c73f7aca /crypto/comp | |
parent | Add a CHANGES entry for the deprecated cleanup functions (diff) | |
download | openssl-342c21cd8bb42b6750abfc49cac26dc288de98c3.tar.xz openssl-342c21cd8bb42b6750abfc49cac26dc288de98c3.zip |
Rename lots of *_intern or *_internal function to int_*
There was a lot of naming inconsistency, so we try and standardise on
one form.
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/comp/c_zlib.c b/crypto/comp/c_zlib.c index e16fbbb4ef..43d70ce876 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)) { - comp_zlib_cleanup_internal(); + int_comp_zlib_cleanup(); return meth; } if (zlib_loaded) @@ -297,7 +297,7 @@ COMP_METHOD *COMP_zlib(void) return (meth); } -void comp_zlib_cleanup_internal(void) +void int_comp_zlib_cleanup(void) { #ifdef ZLIB_SHARED if (zlib_dso != NULL) |