sniper Mon Nov 28 06:37:45 2005 EDT Modified files: (Branch: PHP_5_1) /php-src NEWS /php-src/ext/openssl openssl.c Log: MFH: - Fixed bug #35381 (ssl library is not initialized properly) http://cvs.php.net/diff.php/php-src/NEWS?r1=1.2027.2.238&r2=1.2027.2.239&ty=u Index: php-src/NEWS diff -u php-src/NEWS:1.2027.2.238 php-src/NEWS:1.2027.2.239 --- php-src/NEWS:1.2027.2.238 Mon Nov 28 05:08:30 2005 +++ php-src/NEWS Mon Nov 28 06:37:40 2005 @@ -5,6 +5,7 @@ - Fixed bug #35430 (PDO crashes on incorrect FETCH_FUNC use). (Tony) - Fixed bug #35399 (Since fix of bug #35273 SOAP decoding of soapenc:base64binary fails). (Dmitry) +- Fixed bug #35381 (ssl library is not initialized properly). (Alan) 28 Nov 2005, PHP 5.1.1 - Disabled native date class to prevent pear::date conflict. (Ilia) http://cvs.php.net/diff.php/php-src/ext/openssl/openssl.c?r1=1.98.2.1&r2=1.98.2.2&ty=u Index: php-src/ext/openssl/openssl.c diff -u php-src/ext/openssl/openssl.c:1.98.2.1 php-src/ext/openssl/openssl.c:1.98.2.2 --- php-src/ext/openssl/openssl.c:1.98.2.1 Thu Aug 18 09:34:37 2005 +++ php-src/ext/openssl/openssl.c Mon Nov 28 06:37:43 2005 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: openssl.c,v 1.98.2.1 2005/08/18 13:34:37 sniper Exp $ */ +/* $Id: openssl.c,v 1.98.2.2 2005/11/28 11:37:43 sniper Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -584,6 +584,7 @@ le_x509 = zend_register_list_destructors_ex(php_x509_free, NULL, "OpenSSL X.509", module_number); le_csr = zend_register_list_destructors_ex(php_csr_free, NULL, "OpenSSL X.509 CSR", module_number); + SSL_library_init(); OpenSSL_add_all_ciphers(); OpenSSL_add_all_digests(); OpenSSL_add_all_algorithms();
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php