diff options
author | Ruediger Pluem <rpluem@apache.org> | 2010-01-27 20:46:00 +0100 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2010-01-27 20:46:00 +0100 |
commit | ba38707a864357540621714afe840b2a6ecb1a65 (patch) | |
tree | 479b8683ec0114aa86264c18c7e49e97eb62d54a | |
parent | Fix two typos revealed by xmllint (diff) | |
download | apache2-ba38707a864357540621714afe840b2a6ecb1a65.tar.xz apache2-ba38707a864357540621714afe840b2a6ecb1a65.zip |
* Make autoindex.t from perl testframework work again
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@903794 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | modules/generators/mod_autoindex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c index 93da82399c..30d1ce7926 100644 --- a/modules/generators/mod_autoindex.c +++ b/modules/generators/mod_autoindex.c @@ -1175,7 +1175,7 @@ static void emit_tail(request_rec *r, char *readme_fname, int suppress_amble) ap_rputs(ap_psignature("", r), r); } if (!suppress_post) { - ap_rputs(" </body>\n</html>\n", r); + ap_rputs("</body></html>\n", r); } if (rr != NULL) { ap_destroy_sub_req(rr); |