diff options
author | Ian Holsman <ianh@apache.org> | 2001-08-07 23:18:03 +0200 |
---|---|---|
committer | Ian Holsman <ianh@apache.org> | 2001-08-07 23:18:03 +0200 |
commit | 8f2a259fa527020a94ff981901a6e5b6b929d679 (patch) | |
tree | 62ad7792193c691076b2442fcb9ef57e26c10756 /modules/proxy | |
parent | Update .rc file to fix build (diff) | |
download | apache2-8f2a259fa527020a94ff981901a6e5b6b929d679.tar.xz apache2-8f2a259fa527020a94ff981901a6e5b6b929d679.zip |
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
Diffstat (limited to 'modules/proxy')
-rw-r--r-- | modules/proxy/proxy_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |