From: Jeff Trawick Date: Thu, 28 Dec 2000 22:23:34 +0000 (+0000) Subject: On EBCDIC machines, fix up the charset of the header terminator. X-Git-Tag: APACHE_2_0_BETA_CANDIDATE_1~308 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d21e75657cfdecf1d543456f5b19935558ea400c;p=apache On EBCDIC machines, fix up the charset of the header terminator. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87542 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_protocol.c b/modules/http/http_protocol.c index 4025cf46f4..d95521abf2 100644 --- a/modules/http/http_protocol.c +++ b/modules/http/http_protocol.c @@ -1922,6 +1922,7 @@ static void terminate_header(char *buf) headfield += strlen(tmp); } apr_cpystrn(headfield, CRLF, strlen(CRLF) + 1); + ap_xlate_proto_to_ascii(buf + len, strlen(buf + len)); } /*