From d21e75657cfdecf1d543456f5b19935558ea400c Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 28 Dec 2000 22:23:34 +0000 Subject: [PATCH] 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 --- modules/http/http_protocol.c | 1 + 1 file changed, 1 insertion(+) 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)); } /* -- 2.50.1