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/ex_data.c | |
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/ex_data.c')
-rw-r--r-- | crypto/ex_data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ex_data.c b/crypto/ex_data.c index 573aa48106..9cca28c029 100644 --- a/crypto/ex_data.c +++ b/crypto/ex_data.c @@ -175,7 +175,7 @@ static void cleanup_cb(EX_CALLBACK *funcs) * called under potential race-conditions anyway (it's for program shutdown * after all). */ -void crypto_cleanup_all_ex_data_intern(void) +void int_crypto_cleanup_all_ex_data(void) { int i; |