You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ma...@apache.org on 2002/05/07 15:53:17 UTC

cvs commit: httpd-2.0/modules/generators mod_info.c

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
     <Name ...>
     </,Name>
  instead of the proper termination
     </Name>
  (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("&lt;/,", r);
  +                ap_rputs("&lt;/", r);
   	    } else {
                   ap_rputs("&lt;", r);
   	    }