From: Jim Jagielski Date: Tue, 4 Nov 2008 21:42:17 +0000 (+0000) Subject: Holey moley. Marcus Burke noted this in Rich's Nuts/Bolts talk. X-Git-Tag: 2.3.0~144 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a4df1f5fd1576d62dcbc7cc348455cbb70fc0f36;p=thirdparty%2Fapache%2Fhttpd.git Holey moley. Marcus Burke noted this in Rich's Nuts/Bolts talk. How embarassing! git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@711421 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/generators/mod_info.c b/modules/generators/mod_info.c index 4c8dc4a6cd9..baeec0526d0 100644 --- a/modules/generators/mod_info.c +++ b/modules/generators/mod_info.c @@ -363,7 +363,7 @@ static int show_server_settings(request_rec * r) "connection: %d    " "keep-alive: %d", (int) (apr_time_sec(serv->timeout)), - (int) (apr_time_sec(serv->timeout))); + (int) (apr_time_sec(serv->keep_alive_timeout))); ap_mpm_query(AP_MPMQ_MAX_DAEMON_USED, &max_daemons); ap_mpm_query(AP_MPMQ_IS_THREADED, &threaded); ap_mpm_query(AP_MPMQ_IS_FORKED, &forked);