From: Stas Bekman Date: Sun, 18 Jul 2004 20:06:38 +0000 (+0000) Subject: fix the invalid return value entry for ap_meets_conditions X-Git-Tag: pre_ajp_proxy~49 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2d217feaa42c6f4d43439a1193e706ea2b6a814b;p=apache 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/trunk@104326 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/http_protocol.h b/include/http_protocol.h index 6522267e8b..cb2d23886d 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);