]> granicus.if.org Git - apache/commitdiff
Fix long-standing typo (as of 1.17 when mod_info was ported to apache-2.0):
authorMartin Kraemer <martin@apache.org>
Tue, 7 May 2002 13:53:17 +0000 (13:53 +0000)
committerMartin Kraemer <martin@apache.org>
Tue, 7 May 2002 13:53:17 +0000 (13:53 +0000)
The containers would be printed as
   <Name ...>
   </,Name>
instead of the proper termination
   </Name>
(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

index b40f6e51c80767ec1d70e359a4d20e9c2fd77a46..9cc793cef92480af510da3c7d6e73648400e70d6 100644 (file)
@@ -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("&lt;/,", r);
+                ap_rputs("&lt;/", r);
            } else {
                 ap_rputs("&lt;", r);
            }