From: Eric Covener Date: Thu, 5 Jan 2017 01:30:45 +0000 (+0000) Subject: Merge r752546 from trunk: X-Git-Tag: 2.2.32~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fce12e720905759504169274684e0c92dcefbf83;p=thirdparty%2Fapache%2Fhttpd.git Merge r752546 from trunk: 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 --- diff --git a/server/protocol.c b/server/protocol.c index 6ce98cc1655..6f0f2e00905 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -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); }