iliaa Sun Oct 26 14:36:25 2008 UTC Modified files: /php-src/ext/openssl openssl.c Log: MFB: Fixed compiler warning http://cvs.php.net/viewvc.cgi/php-src/ext/openssl/openssl.c?r1=1.172&r2=1.173&diff_format=u Index: php-src/ext/openssl/openssl.c diff -u php-src/ext/openssl/openssl.c:1.172 php-src/ext/openssl/openssl.c:1.173 --- php-src/ext/openssl/openssl.c:1.172 Fri Oct 24 14:34:14 2008 +++ php-src/ext/openssl/openssl.c Sun Oct 26 14:36:25 2008 @@ -20,7 +20,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: openssl.c,v 1.172 2008/10/24 14:34:14 felipe Exp $ */ +/* $Id: openssl.c,v 1.173 2008/10/26 14:36:25 iliaa Exp $ */ #ifdef HAVE_CONFIG_H #include "config.h" @@ -3637,7 +3637,7 @@ } } - BIO_reset(infile); + (void)BIO_reset(infile); /* write the encrypted data */ SMIME_write_PKCS7(outfile, p7, infile, flags); @@ -3732,7 +3732,7 @@ goto clean_exit; } - BIO_reset(infile); + (void)BIO_reset(infile); /* tack on extra headers */ if (zheaders) {
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php