tony2001 Tue Sep 12 10:54:00 2006 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/openssl openssl.c Log: remove a leftover http://cvs.php.net/viewvc.cgi/php-src/ext/openssl/openssl.c?r1=1.98.2.5.2.19&r2=1.98.2.5.2.20&diff_format=u Index: php-src/ext/openssl/openssl.c diff -u php-src/ext/openssl/openssl.c:1.98.2.5.2.19 php-src/ext/openssl/openssl.c:1.98.2.5.2.20 --- php-src/ext/openssl/openssl.c:1.98.2.5.2.19 Fri Sep 8 20:10:47 2006 +++ php-src/ext/openssl/openssl.c Tue Sep 12 10:53:59 2006 @@ -18,7 +18,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: openssl.c,v 1.98.2.5.2.19 2006/09/08 20:10:47 tony2001 Exp $ */ +/* $Id: openssl.c,v 1.98.2.5.2.20 2006/09/12 10:53:59 tony2001 Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -1905,7 +1905,7 @@ php_error_docref(NULL TSRMLS_CC, E_WARNING, "key array must be of the form array(0 => key, 1 => phrase)"); return NULL; } - //convert_to_string_ex(zphrase); + if (Z_TYPE_PP(zphrase) == IS_STRING) { passphrase = Z_STRVAL_PP(zphrase); } else {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php