Return-Path: Delivered-To: apmail-apache-cvs-archive@apache.org Received: (qmail 10331 invoked by uid 500); 20 Dec 2000 23:13:03 -0000 Mailing-List: contact apache-cvs-help@apache.org; run by ezmlm Precedence: bulk Reply-To: new-httpd@apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list apache-cvs@apache.org Received: (qmail 10308 invoked by uid 500); 20 Dec 2000 23:13:02 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 20 Dec 2000 23:13:02 -0000 Message-ID: <20001220231302.10303.qmail@locus.apache.org> From: gregames@locus.apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/http http_protocol.c gregames 00/12/20 15:13:02 Modified: modules/http http_protocol.c Log: Send HTTP status line in ascii from ebcdic boxes...makes browsers much happier. Revision Changes Path 1.258 +1 -0 httpd-2.0/modules/http/http_protocol.c Index: http_protocol.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/http/http_protocol.c,v retrieving revision 1.257 retrieving revision 1.258 diff -u -r1.257 -r1.258 --- http_protocol.c 2000/12/17 20:58:30 1.257 +++ http_protocol.c 2000/12/20 23:13:01 1.258 @@ -1865,6 +1865,7 @@ /* Output the HTTP/1.x Status-Line and the Date and Server fields */ tmp = apr_pstrcat(r->pool, protocol, " ", r->status_line, CRLF, NULL); + ap_xlate_proto_to_ascii(tmp, strlen(tmp)); apr_cpystrn(buf, tmp, strlen(tmp) + 1); buf += strlen(tmp);