mirror of
https://github.com/apache/httpd.git
synced 2025-08-13 14:40:20 +00:00
mod_cache: When a bad Expires date is present, we need to behave as if
the Expires is in the past, not as if the Expires is missing. PR 16521. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1070128 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
4
modules/cache/mod_cache.c
vendored
4
modules/cache/mod_cache.c
vendored
@ -837,9 +837,7 @@ static int cache_save_filter(ap_filter_t *f, apr_bucket_brigade *in)
|
||||
exps = apr_table_get(r->headers_out, "Expires");
|
||||
}
|
||||
if (exps != NULL) {
|
||||
if (APR_DATE_BAD == (exp = apr_date_parse_http(exps))) {
|
||||
exps = NULL;
|
||||
}
|
||||
exp = apr_date_parse_http(exps);
|
||||
}
|
||||
else {
|
||||
exp = APR_DATE_BAD;
|
||||
|
Reference in New Issue
Block a user