diff options
author | Jeff Trawick <trawick@apache.org> | 2012-08-06 20:12:15 +0200 |
---|---|---|
committer | Jeff Trawick <trawick@apache.org> | 2012-08-06 20:12:15 +0200 |
commit | d44be5e8701bd2bf60fc3eaf1ce7c29259a5ed1c (patch) | |
tree | 358ac7dc76dce0db227672529a6726bb7a703564 /modules/generators/mod_status.c | |
parent | xforms (diff) | |
download | apache2-d44be5e8701bd2bf60fc3eaf1ce7c29259a5ed1c.tar.xz apache2-d44be5e8701bd2bf60fc3eaf1ce7c29259a5ed1c.zip |
follow-on to r1097070:
axe unnecessary trailing comma
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1369904 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | modules/generators/mod_status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/generators/mod_status.c b/modules/generators/mod_status.c index ced19edbb9..50bcb27297 100644 --- a/modules/generators/mod_status.c +++ b/modules/generators/mod_status.c @@ -582,7 +582,7 @@ static int status_handler(request_rec *r) "\"<b><code>L</code></b>\" Logging, \n" "\"<b><code>G</code></b>\" Gracefully finishing,<br /> \n" "\"<b><code>I</code></b>\" Idle cleanup of worker, \n" - "\"<b><code>.</code></b>\" Open slot with no current process,<br />\n" + "\"<b><code>.</code></b>\" Open slot with no current process<br />\n" "<p />\n", r); if (!ap_extended_status) { int j; |