From 10d2882267658ab1d964aa3a13c20ec1f26537e8 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Mon, 2 Jun 2003 13:30:53 +0000 Subject: [PATCH] The right patch (thanks to Eric for identifying the wrong patch) to move SSL_library_init() into the register hooks phase. OpenSSL_add_ssl_algorithms devolves to SSL_library_init, which is the same for most toolkits (and would be accomodated in ssl_toolkit_config.h if not.) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100136 13f79535-47bb-0310-9956-ffa450edef68 --- modules/ssl/mod_ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ssl/mod_ssl.c b/modules/ssl/mod_ssl.c index 06034e1903..a18f2c7ca2 100644 --- a/modules/ssl/mod_ssl.c +++ b/modules/ssl/mod_ssl.c @@ -240,7 +240,7 @@ static int ssl_hook_pre_config(apr_pool_t *pconf, */ CRYPTO_malloc_init(); ERR_load_crypto_strings(); - OpenSSL_add_all_algorithms(); + SSL_library_init(); #if HAVE_ENGINE_LOAD_BUILTIN_ENGINES ENGINE_load_builtin_engines(); #endif -- 2.40.0