From: Greg Ames Date: Wed, 11 Mar 2009 18:05:20 +0000 (+0000) Subject: the CRLF following 100 Continue needs to be sent as ASCII on EBCDIC X-Git-Tag: 2.3.2~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a348f7b78be19ec9bbbf80054bd6c794569009f9;p=thirdparty%2Fapache%2Fhttpd.git 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/trunk@752546 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/protocol.c b/server/protocol.c index 15d5f4e8823..3491bdd7557 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -1677,7 +1677,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); }