iliaa Sun Oct 26 14:36:00 2008 UTC
Modified files: (Branch: PHP_5_2)
/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.98.2.5.2.47&r2=1.98.2.5.2.48&diff_format=u
Index: php-src/ext/openssl/openssl.c
diff -u php-src/ext/openssl/openssl.c:1.98.2.5.2.47
php-src/ext/openssl/openssl.c:1.98.2.5.2.48
--- php-src/ext/openssl/openssl.c:1.98.2.5.2.47 Tue Oct 14 23:40:25 2008
+++ php-src/ext/openssl/openssl.c Sun Oct 26 14:35:59 2008
@@ -20,7 +20,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: openssl.c,v 1.98.2.5.2.47 2008/10/14 23:40:25 iliaa Exp $ */
+/* $Id: openssl.c,v 1.98.2.5.2.48 2008/10/26 14:35:59 iliaa Exp $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
@@ -3010,7 +3010,7 @@
}
}
- BIO_reset(infile);
+ (void)BIO_reset(infile);
/* write the encrypted data */
SMIME_write_PKCS7(outfile, p7, infile, flags);
@@ -3099,7 +3099,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