iliaa           Mon May 30 19:46:28 2005 EDT

  Modified files:              (Branch: PHP_5_0)
    /php-src    NEWS 
    /php-src/ext/soap   php_http.c 
  Log:
  MFH: Fixed bug #33164 (Soap extension incorrectly detects HTTP/1.1).
  
  
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1760.2.406&r2=1.1760.2.407&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1760.2.406 php-src/NEWS:1.1760.2.407
--- php-src/NEWS:1.1760.2.406   Mon May 30 11:13:56 2005
+++ php-src/NEWS        Mon May 30 19:46:27 2005
@@ -13,6 +13,7 @@
   of type (MEDIUM|LONG)BLOB/(MEDIUM|LONG)TEXT. (Andrey)
 - Fixed memory corruption in ImageTTFText() with 64bit systems. (Andrey)
 - Fixed bug #33185 (--enable-session=shared does not build). (Jani)
+- Fixed bug #33164 (Soap extension incorrectly detects HTTP/1.1). (Ilia)
 - Fixed bug #33116 (crash when assigning class name to global variable in
   __autoload). (Dmitry)
 - Fixed bug #33090 (mysqli_prepare() doesn't return an error). (Georg)
http://cvs.php.net/diff.php/php-src/ext/soap/php_http.c?r1=1.55.2.17&r2=1.55.2.18&ty=u
Index: php-src/ext/soap/php_http.c
diff -u php-src/ext/soap/php_http.c:1.55.2.17 
php-src/ext/soap/php_http.c:1.55.2.18
--- php-src/ext/soap/php_http.c:1.55.2.17       Mon May 23 02:25:02 2005
+++ php-src/ext/soap/php_http.c Mon May 30 19:46:28 2005
@@ -17,7 +17,7 @@
   |          Dmitry Stogov <[EMAIL PROTECTED]>                             |
   +----------------------------------------------------------------------+
 */
-/* $Id: php_http.c,v 1.55.2.17 2005/05/23 06:25:02 dmitry Exp $ */
+/* $Id: php_http.c,v 1.55.2.18 2005/05/30 23:46:28 iliaa Exp $ */
 
 #include "php_soap.h"
 #include "ext/standard/base64.h"
@@ -686,7 +686,7 @@
                if (http_version) {
                        char *tmp;
 
-                       if (strncmp(http_version,"1.1", 3)) {
+                       if (!strncmp(http_version,"1.1", 3)) {
                                http_1_1 = 1;
                        }
 

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to