trawick 01/05/07 03:01:32
Modified: server protocol.c
modules/http http_request.c
Log:
fix the type of a parameter to ap_get_brigade()
Revision Changes Path
1.20 +1 -1 httpd-2.0/server/protocol.c
Index: protocol.c
===================================================================
RCS file: /home/cvs/httpd-2.0/server/protocol.c,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- protocol.c 2001/05/06 23:27:13 1.19
+++ protocol.c 2001/05/07 10:01:27 1.20
@@ -217,7 +217,7 @@
while (1) {
if (APR_BRIGADE_EMPTY(b)) {
- int zero = 0;
+ apr_size_t zero = 0;
if ((retval = ap_get_brigade(c->input_filters, b,
AP_MODE_BLOCKING,
&zero /* readline */)) != APR_SUCCESS ||
1.98 +1 -1 httpd-2.0/modules/http/http_request.c
Index: http_request.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/http/http_request.c,v
retrieving revision 1.97
retrieving revision 1.98
diff -u -r1.97 -r1.98
--- http_request.c 2001/05/06 23:27:12 1.97
+++ http_request.c 2001/05/07 10:01:31 1.98
@@ -367,7 +367,7 @@
### allow us to defer creation of the brigade to when we actually
### need to send a FLUSH. */
apr_bucket_brigade *bb = apr_brigade_create(r->pool);
- int zero = 0;
+ apr_size_t zero = 0;
/* Flush the filter contents if:
*
|