diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2012-03-24 12:27:55 -0400 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2012-03-24 12:27:55 -0400 |
commit | 8d0760f38a9d3dabb3a31d1d47f85827d27d0db4 (patch) | |
tree | eb598fcdfd766f4b19bd276b54f1e8e3bf621c03 /ext/soap/php_http.c | |
parent | cb54532b7f63fb9f223e3b39116db86191d6bafe (diff) | |
download | php-git-8d0760f38a9d3dabb3a31d1d47f85827d27d0db4.tar.gz |
Revert incorrect fix
Diffstat (limited to 'ext/soap/php_http.c')
-rw-r--r-- | ext/soap/php_http.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_http.c b/ext/soap/php_http.c index 610c161836..358877df63 100644 --- a/ext/soap/php_http.c +++ b/ext/soap/php_http.c @@ -336,7 +336,7 @@ int make_http_soap_request(zval *this_ptr, n = 3; ZVAL_STRING(&func, "gzencode", 0); smart_str_append_const(&soap_headers_z,"Content-Encoding: gzip\r\n"); - ZVAL_LONG(params[2], 0x1f); + ZVAL_LONG(params[2], 1); } if (call_user_function(CG(function_table), (zval**)NULL, &func, &retval, n, params TSRMLS_CC) == SUCCESS && Z_TYPE(retval) == IS_STRING) { |