diff options
author | Matt Caswell <matt@openssl.org> | 2016-04-04 15:38:45 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-04-13 09:52:33 +0200 |
commit | a5e3ac13d602173e2820e7f4399fa89e25db7821 (patch) | |
tree | 4a0deddfa2fcf0ed1af80263654fd50f15db9dbf /crypto/ex_data.c | |
parent | Deprecate RAND_cleanup() and make it a no-op (diff) | |
download | openssl-a5e3ac13d602173e2820e7f4399fa89e25db7821.tar.xz openssl-a5e3ac13d602173e2820e7f4399fa89e25db7821.zip |
Deprecate CRYPTO_cleanup_all_ex_data() and make it a no-op
CRYPTO_cleanup_all_ex_data() should not be called expicitly - we should
leave auto-deinit to clean this up instead.
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 6984a1fb2e..573aa48106 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(void) +void crypto_cleanup_all_ex_data_intern(void) { int i; |