diff options
author | Yann Ylavic <ylavic@apache.org> | 2023-05-04 12:30:25 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2023-05-04 12:30:25 +0200 |
commit | 218a545bfab9308f0654a356349deb218224d18f (patch) | |
tree | 703a195952d55208026429e9feeb14d1424c3fd8 /modules/generators/mod_status.c | |
parent | tests, adding ignore for warnings that child did not exist in time (diff) | |
download | apache2-218a545bfab9308f0654a356349deb218224d18f.tar.xz apache2-218a545bfab9308f0654a356349deb218224d18f.zip |
Follow up to r1909429: Fix scope/block syntax.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1909606 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/generators/mod_status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/generators/mod_status.c b/modules/generators/mod_status.c index 8e43a3e762..71479b87ef 100644 --- a/modules/generators/mod_status.c +++ b/modules/generators/mod_status.c @@ -348,9 +348,9 @@ static int status_handler(request_rec *r) else if (res != SERVER_DEAD && res != SERVER_STARTING && res != SERVER_IDLE_KILL) { - if (res == SERVER_GRACEFUL) + if (res == SERVER_GRACEFUL) { graceful++; - if (is_async) { + if (is_async) thread_graceful_buffer[i]++; } else { busy++; |