]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Revert revision 1.81 which called non-existent SSL_load_library.
authorJustin Erenkrantz <jerenkrantz@apache.org>
Sat, 31 May 2003 19:29:47 +0000 (19:29 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Sat, 31 May 2003 19:29:47 +0000 (19:29 +0000)
No idea where this was seen, but OpenSSL 0.9.7b does not have this.  This
gets mod_ssl working again.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk/modules/ssl@100122 13f79535-47bb-0310-9956-ffa450edef68

mod_ssl.c

index a1967e9c375e231ea622da62dde5f0b16d0c0935..06034e19035a7bc6d868f3bcf60371879a03da70 100644 (file)
--- 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();
-    SSL_load_library();
+    OpenSSL_add_all_algorithms();
 #if HAVE_ENGINE_LOAD_BUILTIN_ENGINES
     ENGINE_load_builtin_engines();
 #endif