summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Erenkrantz <jerenkrantz@apache.org>2003-05-31 21:29:47 +0200
committerJustin Erenkrantz <jerenkrantz@apache.org>2003-05-31 21:29:47 +0200
commit0c3703cb4b22656334ec89fc5abbcab9ceba4455 (patch)
treea96864b688af329d444c002415c1fbe5f458f4b0
parentsome markup improvement (diff)
downloadapache2-0c3703cb4b22656334ec89fc5abbcab9ceba4455.tar.xz
apache2-0c3703cb4b22656334ec89fc5abbcab9ceba4455.zip
Revert revision 1.81 which called non-existent SSL_load_library.
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@100122 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--modules/ssl/mod_ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/ssl/mod_ssl.c b/modules/ssl/mod_ssl.c
index a1967e9c37..06034e1903 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();
- SSL_load_library();
+ OpenSSL_add_all_algorithms();
#if HAVE_ENGINE_LOAD_BUILTIN_ENGINES
ENGINE_load_builtin_engines();
#endif