You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2007/12/28 16:07:53 UTC

svn commit: r607257 - in /httpd/httpd/branches/2.0.x: STATUS modules/ssl/ssl_engine_init.c

Author: jim
Date: Fri Dec 28 07:07:53 2007
New Revision: 607257

URL: http://svn.apache.org/viewvc?rev=607257&view=rev
Log:
  * 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


Modified:
    httpd/httpd/branches/2.0.x/STATUS
    httpd/httpd/branches/2.0.x/modules/ssl/ssl_engine_init.c

Modified: httpd/httpd/branches/2.0.x/STATUS
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/STATUS?rev=607257&r1=607256&r2=607257&view=diff
==============================================================================
--- httpd/httpd/branches/2.0.x/STATUS (original)
+++ httpd/httpd/branches/2.0.x/STATUS Fri Dec 28 07:07:53 2007
@@ -116,14 +116,6 @@
 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.

Modified: httpd/httpd/branches/2.0.x/modules/ssl/ssl_engine_init.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.0.x/modules/ssl/ssl_engine_init.c?rev=607257&r1=607256&r2=607257&view=diff
==============================================================================
--- httpd/httpd/branches/2.0.x/modules/ssl/ssl_engine_init.c (original)
+++ httpd/httpd/branches/2.0.x/modules/ssl/ssl_engine_init.c Fri Dec 28 07:07:53 2007
@@ -62,6 +62,7 @@
 
     SSL_load_error_strings();
     SSL_library_init();
+    OpenSSL_add_all_algorithms(); /* Required for eg SHA256 client certs */
 }
 
 /*