diff options
author | Matt Caswell <matt@openssl.org> | 2016-04-06 10:39:00 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-04-13 08:52:34 +0100 |
commit | 342c21cd8bb42b6750abfc49cac26dc288de98c3 (patch) | |
tree | 39edffbda0bcf71d4eea518a5f0a9138c73f7aca /crypto/comp | |
parent | 5eb8f71204626843a5ff1e7016d5d9e5a9598ee8 (diff) | |
download | openssl-new-342c21cd8bb42b6750abfc49cac26dc288de98c3.tar.gz |
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) |