From: Christophe Jaillet Date: Fri, 7 Dec 2012 22:31:40 +0000 (+0000) Subject: Use ap_rputs instead of ap_rvputs where applicable. X-Git-Tag: 2.5.0-alpha~6062 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e5e91f83151bfacc2c4f437f348dcaa6932d437f;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/generators/mod_autoindex.c b/modules/generators/mod_autoindex.c index bfcd8114f66..78a774ef153 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, " \n \n", NULL); + ap_rputs(" \n \n", r); } static void push_item(apr_array_header_t *arr, char *type, const char *to, diff --git a/modules/proxy/mod_proxy_balancer.c b/modules/proxy/mod_proxy_balancer.c index de3a0490acb..0429ac91f8b 100644 --- a/modules/proxy/mod_proxy_balancer.c +++ b/modules/proxy/mod_proxy_balancer.c @@ -1549,7 +1549,7 @@ static int balancer_handler(request_rec *r) "'>\n", NULL); ap_rvputs(r, "\n", NULL); - ap_rvputs(r, "\n", NULL); + ap_rputs("\n", r); ap_rputs("
\n", r); } else if (bsel) { const apr_array_header_t *provs; @@ -1599,7 +1599,7 @@ static int balancer_handler(request_rec *r) "'>\n", NULL); ap_rvputs(r, "\n", NULL); - ap_rvputs(r, "\n", NULL); + ap_rputs("\n", r); ap_rputs("
\n", r); } ap_rputs(ap_psignature("",r), r);