rasmus Sat May 13 21:48:15 2006 UTC
Modified files:
/php-src/sapi/apache mod_php5.c
Log:
We might want to consider moving this to a long throughout the sapi code,
but for now switch to a signed int.
http://cvs.php.net/viewcvs.cgi/php-src/sapi/apache/mod_php5.c?r1=1.32&r2=1.33&diff_format=u
Index: php-src/sapi/apache/mod_php5.c
diff -u php-src/sapi/apache/mod_php5.c:1.32 php-src/sapi/apache/mod_php5.c:1.33
--- php-src/sapi/apache/mod_php5.c:1.32 Wed May 10 21:25:01 2006
+++ php-src/sapi/apache/mod_php5.c Sat May 13 21:48:14 2006
@@ -17,7 +17,7 @@
| PHP 4.0 patches by Zeev Suraski <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
*/
-/* $Id: mod_php5.c,v 1.32 2006/05/10 21:25:01 rasmus Exp $ */
+/* $Id: mod_php5.c,v 1.33 2006/05/13 21:48:14 rasmus Exp $ */
#include "php_apache_http.h"
#include "http_conf_globals.h"
@@ -123,7 +123,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