From: Greg Stein Date: Fri, 9 Feb 2001 22:57:50 +0000 (+0000) Subject: "v" in the name has come to mean that a va_arg is in the parameter list. X-Git-Tag: 2.0.10~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a66d4ddfe223650871fcd00bec4fb9e8d4641c93;p=apache "v" in the name has come to mean that a va_arg is in the parameter list. putstrs is clearer in this case. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88041 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/util_filter.h b/include/util_filter.h index 8667338704..803a4aad4b 100644 --- a/include/util_filter.h +++ b/include/util_filter.h @@ -446,9 +446,9 @@ AP_DECLARE(apr_status_t) ap_fflush(ap_filter_t *f, apr_bucket_brigade *bb); * @param f the filter doing the writing * @param bb The brigade to buffer into * @param ... The strings to write - * @deffunc int ap_fvputs(ap_filter_t *f, apr_bucket_brigade *bb, ...) + * @deffunc int ap_fputstrs(ap_filter_t *f, apr_bucket_brigade *bb, ...) */ -AP_DECLARE_NONSTD(int) ap_fvputs(ap_filter_t *f, apr_bucket_brigade *bb, ...); +AP_DECLARE_NONSTD(int) ap_fputstrs(ap_filter_t *f, apr_bucket_brigade *bb, ...); /** * Output data to the filter in printf format diff --git a/server/util_filter.c b/server/util_filter.c index ce71cdebe3..8a21b755a1 100644 --- a/server/util_filter.c +++ b/server/util_filter.c @@ -282,7 +282,7 @@ AP_DECLARE(apr_status_t) ap_fflush(ap_filter_t *f, apr_bucket_brigade *bb) return ap_pass_brigade(f->next, bb); } -AP_DECLARE_NONSTD(int) ap_fvputs(ap_filter_t *f, apr_bucket_brigade *bb, ...) +AP_DECLARE_NONSTD(int) ap_fputstrs(ap_filter_t *f, apr_bucket_brigade *bb, ...) { va_list args; int res;