laruence                                 Fri, 19 Aug 2011 07:40:51 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=315159

Log:
Fixed #55457 for 5.4 branch
Use ssize_t instead of long (as pierre suggestion)

Bug: https://bugs.php.net/55457 (Closed) cli built-in web server does not work 
with IE
      
Changed paths:
    U   php/php-src/branches/PHP_5_4/sapi/cli/php_http_parser.h
    U   php/php-src/trunk/sapi/cli/php_http_parser.h

Modified: php/php-src/branches/PHP_5_4/sapi/cli/php_http_parser.h
===================================================================
--- php/php-src/branches/PHP_5_4/sapi/cli/php_http_parser.h     2011-08-19 
07:24:35 UTC (rev 315158)
+++ php/php-src/branches/PHP_5_4/sapi/cli/php_http_parser.h     2011-08-19 
07:40:51 UTC (rev 315159)
@@ -112,7 +112,7 @@
   unsigned char index;

   uint32_t nread;
-  size_t content_length;
+  ssize_t  content_length;

   /** READ-ONLY **/
   unsigned short http_major;

Modified: php/php-src/trunk/sapi/cli/php_http_parser.h
===================================================================
--- php/php-src/trunk/sapi/cli/php_http_parser.h        2011-08-19 07:24:35 UTC 
(rev 315158)
+++ php/php-src/trunk/sapi/cli/php_http_parser.h        2011-08-19 07:40:51 UTC 
(rev 315159)
@@ -112,7 +112,7 @@
   unsigned char index;

   uint32_t nread;
-  long content_length;
+  ssize_t  content_length;

   /** READ-ONLY **/
   unsigned short http_major;

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

Reply via email to