You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by gr...@apache.org on 2009/03/11 19:05:21 UTC

svn commit: r752546 - /httpd/httpd/trunk/server/protocol.c

Author: gregames
Date: Wed Mar 11 18:05:20 2009
New Revision: 752546

URL: http://svn.apache.org/viewvc?rev=752546&view=rev
Log:
the CRLF following 100 Continue needs to be sent as ASCII on EBCDIC
boxes.

Modified:
    httpd/httpd/trunk/server/protocol.c

Modified: httpd/httpd/trunk/server/protocol.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/protocol.c?rev=752546&r1=752545&r2=752546&view=diff
==============================================================================
--- httpd/httpd/trunk/server/protocol.c (original)
+++ httpd/httpd/trunk/server/protocol.c Wed Mar 11 18:05:20 2009
@@ -1677,7 +1677,7 @@
         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);
 }