summaryrefslogtreecommitdiff
path: root/ext/openssl/openssl.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2008-10-26 14:36:25 +0000
committerIlia Alshanetsky <iliaa@php.net>2008-10-26 14:36:25 +0000
commit726f72a40673f9a1d47baa23ecbe2acd54f60b2e (patch)
treec12b6e339f89c9923078f72f76687edb4d860887 /ext/openssl/openssl.c
parent912470c7d8bde0b32e35d7b3ae8b5a438b9eb43d (diff)
downloadphp-git-726f72a40673f9a1d47baa23ecbe2acd54f60b2e.tar.gz
MFB: Fixed compiler warning
Diffstat (limited to 'ext/openssl/openssl.c')
-rw-r--r--ext/openssl/openssl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/openssl/openssl.c b/ext/openssl/openssl.c
index 1002f19b1c..7d99b5f28a 100644
--- a/ext/openssl/openssl.c
+++ b/ext/openssl/openssl.c
@@ -3637,7 +3637,7 @@ PHP_FUNCTION(openssl_pkcs7_encrypt)
}
}
- BIO_reset(infile);
+ (void)BIO_reset(infile);
/* write the encrypted data */
SMIME_write_PKCS7(outfile, p7, infile, flags);
@@ -3732,7 +3732,7 @@ PHP_FUNCTION(openssl_pkcs7_sign)
goto clean_exit;
}
- BIO_reset(infile);
+ (void)BIO_reset(infile);
/* tack on extra headers */
if (zheaders) {