From: Ian Holsman Date: Tue, 7 Aug 2001 21:18:03 +0000 (+0000) Subject: change the parameter to ap_get_brigade from apr_site_t to apr_off_t, due to X-Git-Tag: 2.0.23~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8f2a259fa527020a94ff981901a6e5b6b929d679;p=apache change the parameter to ap_get_brigade from apr_site_t to apr_off_t, due to a parameter change in the original filter. PR: Submitted by: barbee@veribox.net Reviewed by: ianh@apache.org git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90011 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index faa5074a73..998904399e 100644 --- a/modules/proxy/proxy_util.c +++ b/modules/proxy/proxy_util.c @@ -990,7 +990,7 @@ PROXY_DECLARE(apr_status_t) ap_proxy_string_read(conn_rec *c, apr_bucket_brigade { apr_bucket *e; apr_status_t rv; - apr_size_t readbytes = 0; /* line-at-a-time */ + apr_off_t readbytes = 0; /* line-at-a-time */ char *pos = buff; char *response; int found = 0;