diff options
author | Roy T. Fielding <fielding@apache.org> | 1999-08-26 19:30:18 +0200 |
---|---|---|
committer | Roy T. Fielding <fielding@apache.org> | 1999-08-26 19:30:18 +0200 |
commit | bf83ee06d6ccbfef74674594bc98bc0d091dfb05 (patch) | |
tree | 1606bfe7b85d102b46e4b7675eff6f9cd581c5d4 /modules | |
parent | TODO: changing directory should be handled by CreateProcess (diff) | |
download | apache2-bf83ee06d6ccbfef74674594bc98bc0d091dfb05.tar.xz apache2-bf83ee06d6ccbfef74674594bc98bc0d091dfb05.zip |
Remove ap_excess_requests_per_child reference that broke compilation,
for now anyway. Likewise for run mode, which is now obsolete.
Submitted by: Manoj Kasichainula
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83792 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/generators/mod_info.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/modules/generators/mod_info.c b/modules/generators/mod_info.c index 47a082867c..b6fa3c775a 100644 --- a/modules/generators/mod_info.c +++ b/modules/generators/mod_info.c @@ -408,8 +408,6 @@ static int display_info(request_rec *r) ap_rprintf(r, "<strong>API Version:</strong> " "<tt>%d:%d</tt><br>\n", MODULE_MAGIC_NUMBER_MAJOR, MODULE_MAGIC_NUMBER_MINOR); - ap_rprintf(r, "<strong>Run Mode:</strong> <tt>%s</tt><br>\n", - (ap_standalone ? "standalone" : "inetd")); ap_rprintf(r, "<strong>User/Group:</strong> " "<tt>%s(%d)/%d</tt><br>\n", ap_user_name, (int) ap_user_id, (int) ap_group_id); @@ -433,9 +431,6 @@ static int display_info(request_rec *r) ap_rprintf(r, "<strong>Threads:</strong> " "<tt>per child: %d </tt><br>\n", ap_threads_per_child); - ap_rprintf(r, "<strong>Excess requests:</strong> " - "<tt>per child: %d </tt><br>\n", - ap_excess_requests_per_child); ap_rprintf(r, "<strong>Timeouts:</strong> " "<tt>connection: %d " "keep-alive: %d</tt><br>", |