diff options
author | Rich Salz <rsalz@akamai.com> | 2015-10-27 20:11:48 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-10-30 22:21:42 +0100 |
commit | b0700d2c8de79252ba605748a075cf2e5d670da1 (patch) | |
tree | 80d8b70286dfab4ef907cf1ac388f691821b0f2e /crypto/engine/eng_openssl.c | |
parent | Remove some SSLv2 references (diff) | |
download | openssl-b0700d2c8de79252ba605748a075cf2e5d670da1.tar.xz openssl-b0700d2c8de79252ba605748a075cf2e5d670da1.zip |
Replace "SSLeay" in API with OpenSSL
All instances of SSLeay (any combination of case) were replaced with
the case-equivalent OpenSSL.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/engine/eng_openssl.c')
-rw-r--r-- | crypto/engine/eng_openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/engine/eng_openssl.c b/crypto/engine/eng_openssl.c index 095b5a02fb..244a6096c6 100644 --- a/crypto/engine/eng_openssl.c +++ b/crypto/engine/eng_openssl.c @@ -158,7 +158,7 @@ static int bind_helper(ENGINE *e) # ifndef OPENSSL_NO_DH || !ENGINE_set_DH(e, DH_get_default_method()) # endif - || !ENGINE_set_RAND(e, RAND_SSLeay()) + || !ENGINE_set_RAND(e, RAND_OpenSSL()) # ifdef TEST_ENG_OPENSSL_RC4 || !ENGINE_set_ciphers(e, openssl_ciphers) # endif |