From a46352b8e5b7aa668fde7a8fc06fce93af686032 Mon Sep 17 00:00:00 2001 From: Martin Kraemer Date: Tue, 7 May 2002 13:53:17 +0000 Subject: [PATCH] Fix long-standing typo (as of 1.17 when mod_info was ported to apache-2.0): The containers would be printed as instead of the proper termination (or was it intended?) PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@94995 13f79535-47bb-0310-9956-ffa450edef68 --- modules/generators/mod_info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/generators/mod_info.c b/modules/generators/mod_info.c index b40f6e51c8..9cc793cef9 100644 --- a/modules/generators/mod_info.c +++ b/modules/generators/mod_info.c @@ -139,7 +139,7 @@ static void mod_info_html_cmd_string(request_rec *r, const char *string, while (*s) { if (*s == '<') { if (close) { - ap_rputs("</,", r); + ap_rputs("</", r); } else { ap_rputs("<", r); } -- 2.50.1