diff options
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 bc73e31464..a8c07948d6 100644 --- a/ext/soap/php_http.c +++ b/ext/soap/php_http.c @@ -573,7 +573,7 @@ int get_http_soap_response(zval *this_ptr, char **buffer, int *buffer_len TSRMLS cmplen = strlen(content_type); } if (strncmp(content_type, "text/xml", cmplen) == 0 || - strncmp(content_type, "application/soap+xml", cmplen == 0)) { + strncmp(content_type, "application/soap+xml", cmplen) == 0) { /* if (strncmp(http_body, "<?xml", 5)) { zval *err; |