You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Ian Holsman <ia...@cnet.com> on 2001/08/12 18:20:41 UTC

[Patch] mod_echo.c

Fix a warning from the mod_proxy nightly build log
Index: mod_echo.c
===================================================================
RCS file: /home/cvspublic/httpd-2.0/modules/echo/mod_echo.c,v
retrieving revision 1.33
diff -u -r1.33 mod_echo.c
--- mod_echo.c  2001/06/06 21:28:20     1.33
+++ mod_echo.c  2001/08/12 16:15:55
@@ -93,7 +93,7 @@
     apr_bucket_brigade *bb;
     apr_bucket *b;
     apr_status_t rv;
-    int zero = 0;
+    apr_off_t zero = 0;
     EchoConfig *pConfig = 
ap_get_module_config(c->base_server->module_config,
                                                &echo_module);