From: Jim Jagielski Date: Fri, 28 Dec 2007 15:07:53 +0000 (+0000) Subject: * Initialize all algorithms in OpenSSL; PRs 35469, 42035 X-Git-Tag: 2.0.62~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9803d422a958d444dda73a5f5b77037b70d8ad05;p=thirdparty%2Fapache%2Fhttpd.git * 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 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@607257 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/STATUS b/STATUS index 39b71f2151f..e10122cc827 100644 --- 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. diff --git a/modules/ssl/ssl_engine_init.c b/modules/ssl/ssl_engine_init.c index 14b23551f09..439f7c0e513 100644 --- a/modules/ssl/ssl_engine_init.c +++ b/modules/ssl/ssl_engine_init.c @@ -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 */ } /*