Commit 5b8c41f2 authored by Greg Ames's avatar Greg Ames
Browse files

Send HTTP status line in ascii from ebcdic boxes...makes browsers much happier.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87467 13f79535-47bb-0310-9956-ffa450edef68
parent 3da86f6a
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1865,6 +1865,7 @@ AP_DECLARE(void) ap_basic_http_header(request_rec *r, char *buf)
    /* 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);