rrichards Thu Apr 5 18:09:48 2007 UTC Modified files: /php-src/ext/openssl openssl.c Log: fix win32 build http://cvs.php.net/viewvc.cgi/php-src/ext/openssl/openssl.c?r1=1.136&r2=1.137&diff_format=u Index: php-src/ext/openssl/openssl.c diff -u php-src/ext/openssl/openssl.c:1.136 php-src/ext/openssl/openssl.c:1.137 --- php-src/ext/openssl/openssl.c:1.136 Thu Apr 5 07:24:21 2007 +++ php-src/ext/openssl/openssl.c Thu Apr 5 18:09:48 2007 @@ -20,7 +20,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: openssl.c,v 1.136 2007/04/05 07:24:21 tony2001 Exp $ */ +/* $Id: openssl.c,v 1.137 2007/04/05 18:09:48 rrichards Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -1565,11 +1565,10 @@ if(d2i_PKCS12_bio(bio_in, &p12)) { if(PKCS12_parse(p12, pass, &pkey, &cert, &ca)) { + BIO * bio_out; zval_dtor(zout); array_init(zout); - - BIO * bio_out; bio_out = BIO_new(BIO_s_mem()); if (PEM_write_bio_X509(bio_out, cert)) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php