From: Martin Kraemer Date: Tue, 7 May 2002 13:53:17 +0000 (+0000) Subject: Fix long-standing typo (as of 1.17 when mod_info was ported to apache-2.0): X-Git-Tag: 2.0.37~465 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=845448542e3019551f339bfe68a9ba4985c06595;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/generators/mod_info.c b/modules/generators/mod_info.c index b40f6e51c80..9cc793cef92 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); }