Browse Source

Fixed bug #33164 (Soap extension incorrectly detects HTTP/1.1).

PHP-5.1
Ilia Alshanetsky 21 years ago
parent
commit
b28b401c78
  1. 2
      ext/soap/php_http.c

2
ext/soap/php_http.c

@ -686,7 +686,7 @@ try_again:
if (http_version) {
char *tmp;
if (strncmp(http_version,"1.1", 3)) {
if (!strncmp(http_version,"1.1", 3)) {
http_1_1 = 1;
}

Loading…
Cancel
Save