From e47fad222b10d632a4ddba7eecda78b7f739e644 Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 31 May 2001 18:10:04 +0000 Subject: [PATCH] handle the SERVER_IDLE_KILL state in some of the ExtendedStatus=On output I don't have 100% confidence in my guess as to why some of the state labels are in bold and some aren't (e.g., "Write" vs. "Graceful". Hopefully any rhyme or reason to it is maintained with my change. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89249 13f79535-47bb-0310-9956-ffa450edef68 --- modules/generators/mod_status.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/generators/mod_status.c b/modules/generators/mod_status.c index f1a689a3f0d..e00cffc41e7 100644 --- a/modules/generators/mod_status.c +++ b/modules/generators/mod_status.c @@ -591,6 +591,9 @@ static int status_handler(request_rec *r) case SERVER_GRACEFUL: ap_rputs("Graceful", r); break; + case SERVER_IDLE_KILL: + ap_rputs("Dying", r); + break; default: ap_rputs("?STATE?", r); break; @@ -662,6 +665,9 @@ static int status_handler(request_rec *r) case SERVER_GRACEFUL: ap_rputs("G", r); break; + case SERVER_IDLE_KILL: + ap_rputs("I", r); + break; default: ap_rputs("?", r); break; -- 2.47.2