From: Jeff Trawick Date: Tue, 24 May 2005 19:49:06 +0000 (+0000) Subject: EBCDIC: Handle chunked input from client or, with proxy, origin X-Git-Tag: 2.1.5~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e9323f0ebd747921902346914777512a6cfc6cd4;p=thirdparty%2Fapache%2Fhttpd.git EBCDIC: Handle chunked input from client or, with proxy, origin server. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178262 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index fbfbe27293b..cb3b91c80a4 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,9 @@ Changes with Apache 2.1.5 [Remove entries to the current 2.0 section below, when backported] + *) EBCDIC: Handle chunked input from client or, with proxy, origin + server. [Jeff Trawick] + *) authn_provider_alias: Adds the configuration block tag Authentication directives contained within this block can be diff --git a/modules/http/http_filters.c b/modules/http/http_filters.c index 0c2dddff0ef..0b28d0a7033 100644 --- a/modules/http/http_filters.c +++ b/modules/http/http_filters.c @@ -400,6 +400,8 @@ static long get_chunk_size(char *b) long chunksize = 0; size_t chunkbits = sizeof(long) * 8; + ap_xlate_proto_from_ascii(b, strlen(b)); + /* Skip leading zeros */ while (*b == '0') { ++b;