From: William A. Rowe Jr Date: Mon, 1 Oct 2001 15:48:15 +0000 (+0000) Subject: Remain consistent to the connection_rec, and use apr_off_t for remaining. X-Git-Tag: 2.0.26~139 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8b54a808a90a5573ab4d07942619fbf8c2226705;p=thirdparty%2Fapache%2Fhttpd.git Remain consistent to the connection_rec, and use apr_off_t for remaining. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91216 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index 205a07fffe4..d38e2a1ccaa 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -484,7 +484,7 @@ AP_DECLARE(const char *) ap_method_name_of(int methnum) static long get_chunk_size(char *); typedef struct http_filter_ctx { - apr_size_t remaining; + apr_off_t remaining; enum { BODY_NONE, BODY_LENGTH,