]> granicus.if.org Git - apache/commitdiff
Fix doxygen comments and add a missing line-feed.
authorJustin Erenkrantz <jerenkrantz@apache.org>
Thu, 27 Jun 2002 05:32:20 +0000 (05:32 +0000)
committerJustin Erenkrantz <jerenkrantz@apache.org>
Thu, 27 Jun 2002 05:32:20 +0000 (05:32 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95898 13f79535-47bb-0310-9956-ffa450edef68

include/util_filter.h

index 4f3ac0e15d00e09801aa746c472ad57be1161f8c..88f0587947fc0689ab24947c74eb71fbe0d6b975 100644 (file)
@@ -366,7 +366,7 @@ AP_DECLARE(ap_filter_t *) ap_add_input_filter(const char *name, void *ctx,
  * Variant of ap_add_input_filter() that accepts a registered filter handle
  * (as returned by ap_register_input_filter()) rather than a filter name
  *
- * @param name The filter to add
+ * @param f The filter handle to add
  * @param ctx Context data to provide to the filter
  * @param r The request to add this filter for (or NULL if it isn't associated with a request)
  * @param c The connection to add the fillter for
@@ -398,7 +398,7 @@ AP_DECLARE(ap_filter_t *) ap_add_output_filter(const char *name, void *ctx,
  * Variant of ap_add_output_filter() that accepts a registered filter handle
  * (as returned by ap_register_output_filter()) rather than a filter name
  *
- * @param name The filter to add
+ * @param f The filter handle to add
  * @param r The request to add this filter for (or NULL if it isn't associated with a request)
  * @param c The connection to add the fillter for
  */
@@ -406,6 +406,7 @@ AP_DECLARE(ap_filter_t *) ap_add_output_filter_handle(ap_filter_rec_t *f,
                                                       void *ctx,
                                                       request_rec *r,
                                                       conn_rec *c);
+
 /**
  * Returns the filter handle for use with ap_add_output_filter_handle.
  *