You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by st...@apache.org on 2004/07/18 22:06:28 UTC

cvs commit: httpd-2.0/include http_protocol.h

stas        2004/07/18 13:06:28

  Modified:    include  Tag: APACHE_2_0_BRANCH http_protocol.h
  Log:
  fix the invalid return value entry for ap_meets_conditions
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.83.2.8  +2 -1      httpd-2.0/include/http_protocol.h
  
  Index: http_protocol.h
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/include/http_protocol.h,v
  retrieving revision 1.83.2.7
  retrieving revision 1.83.2.8
  diff -u -u -r1.83.2.7 -r1.83.2.8
  --- http_protocol.h	11 Jun 2004 20:46:41 -0000	1.83.2.7
  +++ http_protocol.h	18 Jul 2004 20:06:28 -0000	1.83.2.8
  @@ -178,7 +178,8 @@
    * inspects the client headers and determines if the response fulfills 
    * the requirements specified.
    * @param r The current request
  - * @return 1 if the response fulfills the condition GET rules, 0 otherwise
  + * @return OK if the response fulfills the condition GET rules, some
  + *         other status code otherwise
    * @deffunc int ap_meets_conditions(request_rec *r)
    */
   AP_DECLARE(int) ap_meets_conditions(request_rec *r);