summaryrefslogtreecommitdiffstats
path: root/modules/generators
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2012-12-07 23:31:40 +0100
committerChristophe Jaillet <jailletc36@apache.org>2012-12-07 23:31:40 +0100
commite5e91f83151bfacc2c4f437f348dcaa6932d437f (patch)
tree8fd0b10fcd7028815b3a02cd020a447876df3acd /modules/generators
parentAPI sync... not crucial for trunk (diff)
downloadapache2-e5e91f83151bfacc2c4f437f348dcaa6932d437f.tar.xz
apache2-e5e91f83151bfacc2c4f437f348dcaa6932d437f.zip
Use ap_rputs instead of ap_rvputs where applicable.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1418524 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/generators')
-rw-r--r--modules/generators/mod_autoindex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c
index bfcd8114f6..78a774ef15 100644
--- a/modules/generators/mod_autoindex.c
+++ b/modules/generators/mod_autoindex.c
@@ -191,7 +191,7 @@ static void emit_preamble(request_rec *r, int xhtml, const char *title)
if (d->head_insert != NULL) {
ap_rputs(d->head_insert, r);
}
- ap_rvputs(r, " </head>\n <body>\n", NULL);
+ ap_rputs(" </head>\n <body>\n", r);
}
static void push_item(apr_array_header_t *arr, char *type, const char *to,