]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* Initialize all algorithms in OpenSSL; PRs 35469, 42035
authorJim Jagielski <jim@apache.org>
Fri, 28 Dec 2007 15:07:53 +0000 (15:07 +0000)
committerJim Jagielski <jim@apache.org>
Fri, 28 Dec 2007 15:07:53 +0000 (15:07 +0000)
    Trunk:
      http://svn.apache.org/viewvc?view=rev&revision=226777
    2.0.x:
      Patch submitted via PR 42035 by Dominique Quatravaux
      http://issues.apache.org/bugzilla/attachment.cgi?id=19901
    +1: trawick, rpluem, wrowe

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@607257 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/ssl/ssl_engine_init.c

diff --git a/STATUS b/STATUS
index 39b71f2151fea5af61f0839a5399b995a8a54abe..e10122cc8274b907042bd5e29ad3e57938171898 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -116,14 +116,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-  * Initialize all algorithms in OpenSSL; PRs 35469, 42035
-    Trunk:
-      http://svn.apache.org/viewvc?view=rev&revision=226777
-    2.0.x:
-      Patch submitted via PR 42035 by Dominique Quatravaux 
-      http://issues.apache.org/bugzilla/attachment.cgi?id=19901
-    +1: trawick, rpluem, wrowe
-
   * Backport 102870; PR 17217; stop linking OpenSSL .so's to support/*
     binaries (especially when compiled --with-static-support (!)) and
     fix mod_ssl.so to compile against .a openssl archives.
index 14b23551f09b0b33750f8f11eeb269b58d460a5e..439f7c0e51313f5c1fa89f8b1ec0e14ac6abe39b 100644 (file)
@@ -62,6 +62,7 @@ static void ssl_init_SSLLibrary(server_rec *s)
 
     SSL_load_error_strings();
     SSL_library_init();
+    OpenSSL_add_all_algorithms(); /* Required for eg SHA256 client certs */
 }
 
 /*