Fix compatibility with OpenSSL 1.1.0. (#9233)

(cherry picked from commit 277e4dc203)
This commit is contained in:
Yossi Gottlieb
2021-07-21 21:06:49 +03:00
committed by Oran Agra
parent de1b19ea88
commit d6f4273241
+2
View File
@@ -146,6 +146,8 @@ void tlsInit(void) {
*/
#if OPENSSL_VERSION_NUMBER < 0x10100000L
OPENSSL_config(NULL);
#elif OPENSSL_VERSION_NUMBER < 0x10101000L
OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG, NULL);
#else
OPENSSL_init_crypto(OPENSSL_INIT_LOAD_CONFIG|OPENSSL_INIT_ATFORK, NULL);
#endif