You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by tr...@apache.org on 2003/09/19 22:02:04 UTC

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

trawick     2003/09/19 13:02:04

  Modified:    .        CHANGES
               modules/generators mod_info.c
  Log:
  Fix mod_info to use the real config file name, not the default
  config file name.
  
  Submitted by:   Aryeh Katz <ar...@secured-services.com>
  Reviewed by:    G�nter Knauf, Jeff Trawick
  
  Revision  Changes    Path
  1.1277    +3 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.1276
  retrieving revision 1.1277
  diff -u -r1.1276 -r1.1277
  --- CHANGES	17 Sep 2003 11:07:24 -0000	1.1276
  +++ CHANGES	19 Sep 2003 20:02:04 -0000	1.1277
  @@ -2,6 +2,9 @@
   
     [Remove entries to the current 2.0 section below, when backported]
   
  +  *) Fix mod_info to use the real config file name, not the default
  +     config file name.  [Aryeh Katz <ar...@secured-services.com>]
  +
     *) This fixes the cache code so that responses can be cached
        if they have an Expires header but no Etag or Last-Modified
        headers. PR 23130.
  
  
  
  1.51      +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.50
  retrieving revision 1.51
  diff -u -r1.50 -r1.51
  --- mod_info.c	3 Feb 2003 17:53:03 -0000	1.50
  +++ mod_info.c	19 Sep 2003 20:02:04 -0000	1.51
  @@ -405,7 +405,7 @@
               ap_rprintf(r, "<dt><strong>Server Root:</strong> "
                           "<tt>%s</tt></dt>\n", ap_server_root);
               ap_rprintf(r, "<dt><strong>Config File:</strong> "
  -		       "<tt>%s</tt></dt>\n", SERVER_CONFIG_FILE);
  +		       "<tt>%s</tt></dt>\n", ap_conftree->filename);
               ap_rputs("</dl><hr />", r);
           }
           for (modp = ap_top_module; modp; modp = modp->next) {