From: William A. Rowe Jr Date: Fri, 30 May 2003 21:35:04 +0000 (+0000) Subject: OpenSSL_add_all_algorithms is simply an alias for SSL_load_library. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9ed71ba7ca75f0c803fd0542da655b6544a8aa9;p=thirdparty%2Fapache%2Fhttpd.git OpenSSL_add_all_algorithms is simply an alias for SSL_load_library. Note that the entire schema of what-we-load-how follows from OpenSSL 0.9.7's own apps/ example applications. More review is greatly desired, but that's where I believed I should start looking for the 'correct' order of operations. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@100110 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/mod_ssl.c b/mod_ssl.c index 06034e19035..a1967e9c375 100644 --- a/mod_ssl.c +++ b/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_load_library(); #if HAVE_ENGINE_LOAD_BUILTIN_ENGINES ENGINE_load_builtin_engines(); #endif