You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ia...@apache.org on 2001/10/08 18:44:04 UTC

cvs commit: httpd-2.0/include util_filter.h

ianh        01/10/08 09:44:04

  Modified:    include  util_filter.h
  Log:
  Correct Verbage in comments.
  
  Submitted by: Aarron Bannert <aa...@clove.org>
  Reviewed by:	Ian Holsman <Ia...@apache.org>
  
  Revision  Changes    Path
  1.60      +3 -3      httpd-2.0/include/util_filter.h
  
  Index: util_filter.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/include/util_filter.h,v
  retrieving revision 1.59
  retrieving revision 1.60
  diff -u -r1.59 -r1.60
  --- util_filter.h	2001/09/11 18:38:21	1.59
  +++ util_filter.h	2001/10/08 16:44:04	1.60
  @@ -268,8 +268,8 @@
   
   /**
    * Get the current bucket brigade from the next filter on the filter
  - * stack.  The filter should return an apr_status_t value.  If the bottom-most 
  - * filter doesn't write to the network, then ::AP_NOBODY_READ is returned.
  + * stack.  The filter returns an apr_status_t value.  If the bottom-most 
  + * filter doesn't read from the network, then ::AP_NOBODY_READ is returned.
    * @param filter The next filter in the chain
    * @param bucket The current bucket brigade
    * @param mode   ::AP_MODE_BLOCKING, ::AP_MODE_NONBLOCKING, or ::AP_MODE_PEEK
  @@ -281,7 +281,7 @@
   
   /**
    * Pass the current bucket brigade down to the next filter on the filter
  - * stack.  The filter should return an apr_status_t value.  If the bottom-most 
  + * stack.  The filter returns an apr_status_t value.  If the bottom-most 
    * filter doesn't write to the network, then ::AP_NOBODY_WROTE is returned.
    * @param filter The next filter in the chain
    * @param bucket The current bucket brigade