]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
fix xlate of literal text ErrorDocument on EBCDIC
authorEric Covener <covener@apache.org>
Tue, 29 Jun 2021 15:57:55 +0000 (15:57 +0000)
committerEric Covener <covener@apache.org>
Tue, 29 Jun 2021 15:57:55 +0000 (15:57 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1891145 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_protocol.c

index 33c9d083ef7f53db6a8c9616fbe40e4e801b6b8d..fd6fb88dbfde5d9dedce74883e90509a8f9e2300 100644 (file)
@@ -1288,7 +1288,7 @@ AP_DECLARE(void) ap_send_error_response(request_rec *r, int recursive_error)
          * it hasn't happened yet; we may never know if it fails.
          */
         if (custom_response[0] == '\"') {
-            ap_rputs(custom_response + 1, r);
+            ap_rvputs_proto_in_ascii(r, custom_response + 1, NULL);
             ap_finalize_request_protocol(r);
             return;
         }