Fix mod_info to use the real config file name, not the default
config file name.
Submitted by: Aryeh Katz <aryeh@secured-services.com>
Reviewed by: trawick, striker, nd
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@101650
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.0.49
+ *) Fix mod_info to use the real config file name, not the default
+ config file name. [Aryeh Katz <aryeh@secured-services.com>]
+
*) Set the scoreboard state to indicate logging prior to running
logging hooks so that server-status will show 'L' for hung loggers
instead of 'W'. [Jeff Trawick]
APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2003/11/01 16:22:15 $]
+Last modified at [$Date: 2003/11/01 16:29:56 $]
Release:
modules/filters/mod_ext_filter.c r1.5
+1: trawick, nd
- * Fix mod_info to use the real config file name, not the default
- config file name.
- modules/generators/mod_info.c r1.151
- +1: trawick, striker, nd
-
* When UseCanonicalName is set to OFF, allow ap_get_server_port to
check r->connection->local_addr->port before defaulting to
server->port or ap_default_port()
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) {