]> granicus.if.org Git - apache/commitdiff
EBCDIC: Handle chunked input from client or, with proxy, origin
authorJeff Trawick <trawick@apache.org>
Tue, 24 May 2005 19:49:06 +0000 (19:49 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 24 May 2005 19:49:06 +0000 (19:49 +0000)
server.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@178262 13f79535-47bb-0310-9956-ffa450edef68

CHANGES
modules/http/http_filters.c

diff --git a/CHANGES b/CHANGES
index fbfbe27293b695b6218fec30b91eb805a750d4e4..cb3b91c80a4ce5a642ca64838dbb2965900791bc 100644 (file)
--- 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
      <AuthnProviderAlias baseProvider Alias>
      Authentication directives contained within this block can be
index 0c2dddff0ef0b7eaac22aa49b1762da7af3a3a51..0b28d0a7033f8e4ec67142573d7283a5ef1b776b 100644 (file)
@@ -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;