From: Stas Bekman Date: Sun, 18 Jul 2004 20:06:28 +0000 (+0000) Subject: fix the invalid return value entry for ap_meets_conditions X-Git-Tag: STRIKER_2_0_51_RC1^2~140 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fec2b0a87614f5a7f1382cfbb054a675e874d068;p=thirdparty%2Fapache%2Fhttpd.git fix the invalid return value entry for ap_meets_conditions PR: Obtained from: Submitted by: Reviewed by: git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@104325 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_protocol.h b/include/http_protocol.h index 6522267e8b1..cb2d23886dc 100644 --- a/include/http_protocol.h +++ b/include/http_protocol.h @@ -178,7 +178,8 @@ AP_DECLARE(void) ap_set_last_modified(request_rec *r); * 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);