summaryrefslogtreecommitdiffstats
path: root/crypto/evp/evp_rand.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/evp_rand.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/evp_rand.c')
-rw-r--r--crypto/evp/evp_rand.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/evp/evp_rand.c b/crypto/evp/evp_rand.c
index 1e41fe0765..a76d746d9a 100644
--- a/crypto/evp/evp_rand.c
+++ b/crypto/evp/evp_rand.c
@@ -293,7 +293,7 @@ void EVP_RAND_free(EVP_RAND *rand)
evp_rand_free(rand);
}
-int EVP_RAND_get_number(const EVP_RAND *rand)
+int evp_rand_get_number(const EVP_RAND *rand)
{
return rand->name_id;
}