summaryrefslogtreecommitdiffstats
path: root/providers
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2021-03-18 16:52:38 +0100
committerRichard Levitte <levitte@openssl.org>2021-03-18 16:52:38 +0100
commit9fe4f5bc82bb7b5352ce4f55c86d53ce802f5053 (patch)
tree3ab785c474f4f1cf674cd54b7b183e559e3d06fd /providers
parentee067bc066ccc21462a1a489f8f1314c7207c01f (diff)
Fix a missing rand -> ossl_rand rename
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/14609)
Diffstat (limited to 'providers')
-rw-r--r--providers/implementations/rands/seeding/rand_cpu_x86.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/providers/implementations/rands/seeding/rand_cpu_x86.c b/providers/implementations/rands/seeding/rand_cpu_x86.c
index 0bdf1c302f..39da74e293 100644
--- a/providers/implementations/rands/seeding/rand_cpu_x86.c
+++ b/providers/implementations/rands/seeding/rand_cpu_x86.c
@@ -35,7 +35,7 @@ static size_t get_hardware_random_value(unsigned char *buf, size_t len);
* Returns the total entropy count, if it exceeds the requested
* entropy count. Otherwise, returns an entropy count of 0.
*/
-size_t prov_acquire_entropy_from_cpu(RAND_POOL *pool)
+size_t ossl_prov_acquire_entropy_from_cpu(RAND_POOL *pool)
{
size_t bytes_needed;
unsigned char *buffer;