]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Merge r752546 from trunk:
authorEric Covener <covener@apache.org>
Thu, 5 Jan 2017 01:30:45 +0000 (01:30 +0000)
committerEric Covener <covener@apache.org>
Thu, 5 Jan 2017 01:30:45 +0000 (01:30 +0000)
the CRLF following 100 Continue needs to be sent as ASCII on EBCDIC
boxes.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x@1777399 13f79535-47bb-0310-9956-ffa450edef68

server/protocol.c

index 6ce98cc1655a5da17009e06be7bbdf28a4c3f0e8..6f0f2e009058248fc45a5c7af4b7f8c5c3fffde7 100644 (file)
@@ -1745,7 +1745,7 @@ AP_DECLARE(void) ap_send_interim_response(request_rec *r, int send_headers)
         apr_table_do(send_header, &x, r->headers_out, NULL);
         apr_table_clear(r->headers_out);
     }
-    ap_fputs(x.f, x.bb, CRLF);
+    ap_fputs(x.f, x.bb, CRLF_ASCII);
     ap_fflush(x.f, x.bb);
     apr_brigade_destroy(x.bb);
 }