rasmus          Sat May 13 21:50:28 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src/sapi/apache        mod_php5.c 
  Log:
  Switch to a signed int for now.  Will look at moving to a long throughout
  the code here.
  
  
http://cvs.php.net/viewcvs.cgi/php-src/sapi/apache/mod_php5.c?r1=1.19.2.7.2.1&r2=1.19.2.7.2.2&diff_format=u
Index: php-src/sapi/apache/mod_php5.c
diff -u php-src/sapi/apache/mod_php5.c:1.19.2.7.2.1 
php-src/sapi/apache/mod_php5.c:1.19.2.7.2.2
--- php-src/sapi/apache/mod_php5.c:1.19.2.7.2.1 Wed May 10 21:19:32 2006
+++ php-src/sapi/apache/mod_php5.c      Sat May 13 21:50:28 2006
@@ -17,7 +17,7 @@
    | PHP 4.0 patches by Zeev Suraski <[EMAIL PROTECTED]>                      |
    +----------------------------------------------------------------------+
  */
-/* $Id: mod_php5.c,v 1.19.2.7.2.1 2006/05/10 21:19:32 rasmus Exp $ */
+/* $Id: mod_php5.c,v 1.19.2.7.2.2 2006/05/13 21:50:28 rasmus Exp $ */
 
 #include "php_apache_http.h"
 #include "http_conf_globals.h"
@@ -127,7 +127,7 @@
  */
 static int sapi_apache_read_post(char *buffer, uint count_bytes TSRMLS_DC)
 {
-       uint total_read_bytes=0, read_bytes;
+       int total_read_bytes=0, read_bytes;
        request_rec *r = (request_rec *) SG(server_context);
        void (*handler)(int);
 

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

Reply via email to