summaryrefslogtreecommitdiff
path: root/ext/standard/streamsfuncs.c
diff options
context:
space:
mode:
authorAndrea Faulds <ajf@ajf.me>2016-09-05 22:12:26 +0100
committerAndrea Faulds <ajf@ajf.me>2016-09-05 22:12:26 +0100
commit009ee6e503fd2f354f6eda2b6a74f13344dca3b0 (patch)
tree3914ae041b30d997dc20f9db523a4512fa4e7c92 /ext/standard/streamsfuncs.c
parent4fa52b42c76a87d85ce15b03e32f2f674665e060 (diff)
downloadphp-git-009ee6e503fd2f354f6eda2b6a74f13344dca3b0.tar.gz
Unbreak FAST_ZPP dead code
Diffstat (limited to 'ext/standard/streamsfuncs.c')
-rw-r--r--ext/standard/streamsfuncs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/streamsfuncs.c b/ext/standard/streamsfuncs.c
index e39f9b4cfc..f76769c27c 100644
--- a/ext/standard/streamsfuncs.c
+++ b/ext/standard/streamsfuncs.c
@@ -996,7 +996,7 @@ PHP_FUNCTION(stream_context_set_option)
zval *options;
#ifndef FAST_ZPP
- if (zend_parse_parameters(, ZEND_NUM_ARGS(), "ra", &zcontext, &options) == FAILURE) {
+ if (zend_parse_parameters(ZEND_NUM_ARGS(), "ra", &zcontext, &options) == FAILURE) {
RETURN_FALSE;
}
#else
@@ -1511,7 +1511,7 @@ PHP_FUNCTION(stream_socket_enable_crypto)
zend_bool enable, cryptokindnull;
int ret;
-#ifdef FAST_ZPP
+#ifndef FAST_ZPP
if (zend_parse_parameters(ZEND_NUM_ARGS(), "rb|l!r", &zstream, &enable, &cryptokind, &cryptokindnull, &zsessstream) == FAILURE) {
RETURN_FALSE;
}