From: Nick Kew Date: Sun, 12 Sep 2004 15:50:43 +0000 (+0000) Subject: PR: 19688 X-Git-Tag: 2.1.1~288 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75fe3d7ce2df11525e8c5a1cbd34257857afce1a;p=thirdparty%2Fapache%2Fhttpd.git PR: 19688 Fix incorrect (and important) comments git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105089 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/util_filter.h b/include/util_filter.h index 33df5d40dc5..51e0ad0bac2 100644 --- a/include/util_filter.h +++ b/include/util_filter.h @@ -452,14 +452,14 @@ AP_DECLARE_NONSTD(apr_status_t) ap_filter_flush(apr_bucket_brigade *bb, /** * Flush the current brigade down the filter stack. - * @param f The current filter + * @param f The filter we are passing to * @param bb The brigade to flush */ AP_DECLARE(apr_status_t) ap_fflush(ap_filter_t *f, apr_bucket_brigade *bb); /** * Write a buffer for the current filter, buffering if possible. - * @param f the filter doing the writing + * @param f the filter we are writing to * @param bb The brigade to buffer into * @param data The data to write * @param nbyte The number of bytes in the data @@ -469,7 +469,7 @@ AP_DECLARE(apr_status_t) ap_fflush(ap_filter_t *f, apr_bucket_brigade *bb); /** * Write a buffer for the current filter, buffering if possible. - * @param f the filter doing the writing + * @param f the filter we are writing to * @param bb The brigade to buffer into * @param str The string to write */ @@ -478,7 +478,7 @@ AP_DECLARE(apr_status_t) ap_fflush(ap_filter_t *f, apr_bucket_brigade *bb); /** * Write a character for the current filter, buffering if possible. - * @param f the filter doing the writing + * @param f the filter we are writing to * @param bb The brigade to buffer into * @param c The character to write */ @@ -487,7 +487,7 @@ AP_DECLARE(apr_status_t) ap_fflush(ap_filter_t *f, apr_bucket_brigade *bb); /** * Write an unspecified number of strings to the current filter - * @param f the filter doing the writing + * @param f the filter we are writing to * @param bb The brigade to buffer into * @param ... The strings to write */ @@ -497,7 +497,7 @@ AP_DECLARE_NONSTD(apr_status_t) ap_fputstrs(ap_filter_t *f, /** * Output data to the filter in printf format - * @param f the filter doing the writing + * @param f the filter we are writing to * @param bb The brigade to buffer into * @param fmt The format string * @param ... The argumets to use to fill out the format string