Commit f553c641 authored by Jeff Trawick's avatar Jeff Trawick
Browse files

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
parent c6ae32b7
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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
+2 −0
Original line number Diff line number Diff line
@@ -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;