From 34561a48813cb4e2e922b1f7e69088f2162effaf Mon Sep 17 00:00:00 2001 From: Christophe Jaillet Date: Fri, 7 Dec 2012 22:31:40 +0000 Subject: [PATCH] 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 --- modules/generators/mod_autoindex.c | 2 +- modules/proxy/mod_proxy_balancer.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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); -- 2.47.3