From: Jeff Trawick Date: Tue, 15 Aug 2000 01:50:17 +0000 (+0000) Subject: Fix some typos in the comments. X-Git-Tag: APACHE_2_0_ALPHA_6~24 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2c74169b708d8b09f7c97a2850cd5fddb89650b2;p=thirdparty%2Fapache%2Fhttpd.git Fix some typos in the comments. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86075 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/util_filter.h b/include/util_filter.h index 12d00d4c9e9..1d38f8aa377 100644 --- a/include/util_filter.h +++ b/include/util_filter.h @@ -182,9 +182,10 @@ struct ap_filter_t { /** A place to store any data associated with the current filter */ ap_bucket_brigade *ctx; - /** The type of filter, either CONTENT or CONNECTION. A CONTENT filter - * modifies the data based on information found in the content. A - * CONNECTION filter modifies the data based on the type of connection. + /** The type of filter, either AP_FTYPE_CONTENT or AP_FTYPE_CONNECTION. + * An AP_FTYPE_CONTENT filter modifies the data based on information + * found in the content. An AP_FTYPE_CONNECTION filter modifies the + * data based on the type of connection. */ ap_filter_type ftype; /** The next filter in the chain */ @@ -232,7 +233,7 @@ API_EXPORT(int) ap_pass_brigade(ap_filter_t *filter, ap_bucket_brigade *bucket); * functions for later addition to a specific request * @param name The name to attach to the filter function * @param filter_func The filter function to name - * @param The type of filter function, either CONTENT or CONNECTION + * @param The type of filter function, either AP_FTYPE_CONTENT or AP_FTYPE_CONNECTION * @deffunc void ap_register_filter(const char *name, ap_filter_func filter_func, ap_filter_type ftype) */ API_EXPORT(void) ap_register_filter(const char *name,