ap_meets_conditions() until after the point where we
short-circuit out of the function on subrequests
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92354
13f79535-47bb-0310-9956-
ffa450edef68
AP_DECLARE(int) ap_meets_conditions(request_rec *r)
{
- const char *etag = apr_table_get(r->headers_out, "ETag");
+ const char *etag;
const char *if_match, *if_modified_since, *if_unmodified, *if_nonematch;
apr_time_t mtime;
return OK;
}
+ etag = apr_table_get(r->headers_out, "ETag");
+
/* XXX: we should define a "time unset" constant */
mtime = (r->mtime != 0) ? r->mtime : apr_time_now();