diff options
-rw-r--r-- | STATUS | 5 | ||||
-rw-r--r-- | modules/generators/mod_status.c | 2 |
2 files changed, 1 insertions, 6 deletions
@@ -88,11 +88,6 @@ RELEASE SHOWSTOPPERS: PATCHES ACCEPTED TO BACKPORT FROM TRUNK: [ start all new proposals below, under PATCHES PROPOSED. ] -* Axe unnecessary trailing comma from server-status user output. - trunk patch: http://svn.apache.org/viewvc?view=rev&rev=1369904 - 2.4.x patch: trunk patch works - +1: rjung, trawick, humbedooh - * mpm_winnt: Tweak a message added in r750567 so that the accept thread logs the physical address it listens on instead of hostname|*. trunk patch: http://svn.apache.org/viewvc?view=rev&rev=1364138 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; |