From: Richard Levitte Date: Thu, 18 Mar 2021 15:52:38 +0000 (+0100) Subject: Fix a missing rand -> ossl_rand rename X-Git-Tag: openssl-3.0.0-alpha14~214 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fe4f5bc82bb7b5352ce4f55c86d53ce802f5053;p=thirdparty%2Fopenssl.git Fix a missing rand -> ossl_rand rename Reviewed-by: Tomas Mraz Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/14609) --- diff --git a/providers/implementations/rands/seeding/rand_cpu_x86.c b/providers/implementations/rands/seeding/rand_cpu_x86.c index 0bdf1c302f1..39da74e2931 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;