Fix error discrepancy.
[openssl.git] / crypto / rand / rand_lib.c
index 54f1d35c6c71cfd2493757f94d0360895b68a64f..239a1cde81894e9eece5b46e6dd770fc42075971 100644 (file)
@@ -200,7 +200,7 @@ static size_t drbg_get_entropy(DRBG_CTX *ctx, unsigned char **pout,
        *pout = OPENSSL_malloc(min_len);
        if (!*pout)
                return 0;
-       if (md_rand_bytes_lock(*pout, min_len, 0, 0) <= 0)
+       if (ssleay_rand_bytes(*pout, min_len, 0, 0) <= 0)
                {
                OPENSSL_free(*pout);
                *pout = NULL;