From 2d217feaa42c6f4d43439a1193e706ea2b6a814b Mon Sep 17 00:00:00 2001 From: Stas Bekman Date: Sun, 18 Jul 2004 20:06:38 +0000 Subject: [PATCH] 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 --- include/http_protocol.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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); -- 2.50.1