diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2008-10-26 14:35:41 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2008-10-26 14:35:41 +0000 |
commit | 8bd294387723d8e199a32aac8fa42f6e9e550a7e (patch) | |
tree | 819843fe3aed6dbec8c0acc0309b600292f9ce0c | |
parent | 5d804d163ae9774c325c976d401fcab1d87375cb (diff) | |
download | php-git-8bd294387723d8e199a32aac8fa42f6e9e550a7e.tar.gz |
Fixed compiler warning
-rw-r--r-- | ext/openssl/openssl.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c index b35cf9f6df..780313e2a4 100644 --- a/ext/openssl/openssl.c +++ b/ext/openssl/openssl.c @@ -3439,7 +3439,7 @@ PHP_FUNCTION(openssl_pkcs7_encrypt) } } - BIO_reset(infile); + (void)BIO_reset(infile); /* write the encrypted data */ SMIME_write_PKCS7(outfile, p7, infile, flags); @@ -3528,7 +3528,7 @@ PHP_FUNCTION(openssl_pkcs7_sign) goto clean_exit; } - BIO_reset(infile); + (void)BIO_reset(infile); /* tack on extra headers */ if (zheaders) { |