From 8f2a259fa527020a94ff981901a6e5b6b929d679 Mon Sep 17 00:00:00 2001 From: Ian Holsman Date: Tue, 7 Aug 2001 21:18:03 +0000 Subject: [PATCH] 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 --- modules/proxy/proxy_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/proxy/proxy_util.c b/modules/proxy/proxy_util.c index faa5074a739..998904399e5 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; -- 2.47.2