]> granicus.if.org Git - apache/commitdiff
"v" in the name has come to mean that a va_arg is in the parameter list.
authorGreg Stein <gstein@apache.org>
Fri, 9 Feb 2001 22:57:50 +0000 (22:57 +0000)
committerGreg Stein <gstein@apache.org>
Fri, 9 Feb 2001 22:57:50 +0000 (22:57 +0000)
putstrs is clearer in this case.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88041 13f79535-47bb-0310-9956-ffa450edef68

include/util_filter.h
server/util_filter.c

index 8667338704c612992ba0d19b07fe5014711d6ff5..803a4aad4bc77f142b150259cc42184caa6f2341 100644 (file)
@@ -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
index ce71cdebe328bd92fe1cfbed562697da7b586bda..8a21b755a1379823455af22f557430f534b25bfe 100644 (file)
@@ -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;