Return-Path: Delivered-To: apmail-httpd-cvs-archive@httpd.apache.org Received: (qmail 8573 invoked by uid 500); 7 May 2002 13:53:18 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 8561 invoked by uid 500); 7 May 2002 13:53:18 -0000 Delivered-To: apmail-httpd-2.0-cvs@apache.org Date: 7 May 2002 13:53:17 -0000 Message-ID: <20020507135317.14614.qmail@icarus.apache.org> From: martin@apache.org To: httpd-2.0-cvs@apache.org Subject: cvs commit: httpd-2.0/modules/generators mod_info.c X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N martin 02/05/07 06:53:17 Modified: modules/generators mod_info.c Log: 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?) Revision Changes Path 1.46 +1 -1 httpd-2.0/modules/generators/mod_info.c Index: mod_info.c =================================================================== RCS file: /home/cvs/httpd-2.0/modules/generators/mod_info.c,v retrieving revision 1.45 retrieving revision 1.46 diff -u -r1.45 -r1.46 --- mod_info.c 23 Mar 2002 13:06:30 -0000 1.45 +++ mod_info.c 7 May 2002 13:53:17 -0000 1.46 @@ -139,7 +139,7 @@ while (*s) { if (*s == '<') { if (close) { - ap_rputs("</,", r); + ap_rputs("</", r); } else { ap_rputs("<", r); }