diff options
author | Christophe Jaillet <jailletc36@apache.org> | 2016-08-20 18:23:42 +0200 |
---|---|---|
committer | Christophe Jaillet <jailletc36@apache.org> | 2016-08-20 18:23:42 +0200 |
commit | 91af78c1c37ca4a062861f0aa602a92514af5f5d (patch) | |
tree | 095cce481150ddcea69184dd47b419fea47c00f4 /modules/generators/mod_status.c | |
parent | Delay some memory allocation in order to save 272 bytes in the 'request' memo... (diff) | |
download | apache2-91af78c1c37ca4a062861f0aa602a92514af5f5d.tar.xz apache2-91af78c1c37ca4a062861f0aa602a92514af5f5d.zip |
Fix <p> tag closing syntax
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1757011 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/generators/mod_status.c')
-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 647c930ae2..00fc3d47ce 100644 --- a/modules/generators/mod_status.c +++ b/modules/generators/mod_status.c @@ -629,7 +629,7 @@ static int status_handler(request_rec *r) "\"<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" - "<p />\n", r); + "</p>\n", r); if (!ap_extended_status) { int j; int k = 0; |