summaryrefslogtreecommitdiffstats
path: root/crypto/evp/names.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-04-04 15:28:58 +0100
committerMatt Caswell <matt@openssl.org>2016-04-13 08:52:33 +0100
commit22c84afa773559279af928652a2d9f3489cc7d73 (patch)
tree60c93f35edc2423b771f049fba284c14b5a46499 /crypto/evp/names.c
parent62d876ad1784bce2feb1b95cfff8aca0fbc3e1e2 (diff)
Deprecate EVP_cleanup() and make it a no-op
EVP_cleanup() 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/evp/names.c')
-rw-r--r--crypto/evp/names.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/names.c b/crypto/evp/names.c
index 2a5606b040..22c725d060 100644
--- a/crypto/evp/names.c
+++ b/crypto/evp/names.c
@@ -128,7 +128,7 @@ const EVP_MD *EVP_get_digestbyname(const char *name)
return (cp);
}
-void EVP_cleanup(void)
+void evp_cleanup_intern(void)
{
OBJ_NAME_cleanup(OBJ_NAME_TYPE_CIPHER_METH);
OBJ_NAME_cleanup(OBJ_NAME_TYPE_MD_METH);