We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 934faf5 commit 72cba00Copy full SHA for 72cba00
src/libmongoc/src/mongoc/mongoc-openssl.c
@@ -76,7 +76,10 @@ _mongoc_openssl_init (void)
76
77
SSL_library_init ();
78
SSL_load_error_strings ();
79
+#if OPENSSL_VERSION_NUMBER < 0x30000000L
80
+ // See: https://www.openssl.org/docs/man3.0/man7/migration_guide.html#Deprecated-function-mappings
81
ERR_load_BIO_strings ();
82
+#endif
83
OpenSSL_add_all_algorithms ();
84
#if OPENSSL_VERSION_NUMBER < 0x10100000L
85
_mongoc_openssl_thread_startup ();
0 commit comments