summaryrefslogtreecommitdiffstats
path: root/crypto/evp/mac_lib.c
diff options
context:
space:
mode:
authorPauli <pauli@openssl.org>2021-06-01 21:18:04 +1000
committerPauli <pauli@openssl.org>2021-06-02 20:45:39 +1000
commitbcd5d3a22d21010cf28c3b7b5f1c79b22be6da7a (patch)
tree8ac4ccb6664b1195636690522b05cb05835a6c3b /crypto/evp/mac_lib.c
parent6ea964cd4a1b2e945fbf79204d123811bc57d3a5 (diff)
libcrypto: make XXX_get_number() internal
Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15564)
Diffstat (limited to 'crypto/evp/mac_lib.c')
-rw-r--r--crypto/evp/mac_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/mac_lib.c b/crypto/evp/mac_lib.c
index bd8543b2c4..339d10919f 100644
--- a/crypto/evp/mac_lib.c
+++ b/crypto/evp/mac_lib.c
@@ -203,7 +203,7 @@ int EVP_MAC_CTX_set_params(EVP_MAC_CTX *ctx, const OSSL_PARAM params[])
return 1;
}
-int EVP_MAC_get_number(const EVP_MAC *mac)
+int evp_mac_get_number(const EVP_MAC *mac)
{
return mac->name_id;
}