Commit 87f5cbed authored by Greg Stein's avatar Greg Stein
Browse files

"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
parent 730ca482
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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;