You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by co...@apache.org on 2021/06/29 15:57:55 UTC

svn commit: r1891145 - /httpd/httpd/trunk/modules/http/http_protocol.c

Author: covener
Date: Tue Jun 29 15:57:55 2021
New Revision: 1891145

URL: http://svn.apache.org/viewvc?rev=1891145&view=rev
Log:
fix xlate of literal text ErrorDocument on EBCDIC

Modified:
    httpd/httpd/trunk/modules/http/http_protocol.c

Modified: httpd/httpd/trunk/modules/http/http_protocol.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/http/http_protocol.c?rev=1891145&r1=1891144&r2=1891145&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/http/http_protocol.c (original)
+++ httpd/httpd/trunk/modules/http/http_protocol.c Tue Jun 29 15:57:55 2021
@@ -1288,7 +1288,7 @@ AP_DECLARE(void) ap_send_error_response(
          * 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;
         }