Return-Path: Delivered-To: apmail-httpd-cvs-archive@www.apache.org Received: (qmail 64882 invoked from network); 1 Aug 2005 12:11:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 1 Aug 2005 12:11:51 -0000 Received: (qmail 72976 invoked by uid 500); 1 Aug 2005 12:11:47 -0000 Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 72847 invoked by uid 500); 1 Aug 2005 12:11:46 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 72803 invoked by uid 99); 1 Aug 2005 12:11:46 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Mon, 01 Aug 2005 05:11:35 -0700 Received: (qmail 64487 invoked by uid 65534); 1 Aug 2005 12:11:33 -0000 Message-ID: <20050801121133.64486.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r226777 - /httpd/httpd/trunk/modules/ssl/mod_ssl.c Date: Mon, 01 Aug 2005 12:11:33 -0000 To: cvs@httpd.apache.org From: jorton@apache.org X-Mailer: svnmailer-1.0.2 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: jorton Date: Mon Aug 1 05:11:30 2005 New Revision: 226777 URL: http://svn.apache.org/viewcvs?rev=226777&view=rev Log: * modules/ssl/mod_ssl.c (ssl_hook_pre_config): Initialize all algorithms in OpenSSL; enables PKCS#8 keyfile support. PR: 35469 Modified: httpd/httpd/trunk/modules/ssl/mod_ssl.c Modified: httpd/httpd/trunk/modules/ssl/mod_ssl.c URL: http://svn.apache.org/viewcvs/httpd/httpd/trunk/modules/ssl/mod_ssl.c?rev=226777&r1=226776&r2=226777&view=diff ============================================================================== --- httpd/httpd/trunk/modules/ssl/mod_ssl.c (original) +++ httpd/httpd/trunk/modules/ssl/mod_ssl.c Mon Aug 1 05:11:30 2005 @@ -263,6 +263,7 @@ ENGINE_load_builtin_engines(); #endif #ifdef HAVE_OPENSSL + OpenSSL_add_all_algorithms(); #if OPENSSL_VERSION_NUMBER >= 0x00907001 OPENSSL_load_builtin_modules(); #endif