]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
the CRLF following 100 Continue needs to be sent as ASCII on EBCDIC
authorGreg Ames <gregames@apache.org>
Wed, 11 Mar 2009 18:05:20 +0000 (18:05 +0000)
committerGreg Ames <gregames@apache.org>
Wed, 11 Mar 2009 18:05:20 +0000 (18:05 +0000)
boxes.

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

server/protocol.c

index 15d5f4e88235999d52b1ec832f5359a8e9490a84..3491bdd7557966774347bfed6ccd86441d7e98fd 100644 (file)
@@ -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);
 }