From c701e73145a10b7be23176789af0fd38debac0af Mon Sep 17 00:00:00 2001 From: Bill Stoddard Date: Tue, 17 Dec 2002 19:12:38 +0000 Subject: [PATCH] SHould be using ths string form of exp (which is exps). Reported by:Joe Orton git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@97988 13f79535-47bb-0310-9956-ffa450edef68 --- modules/experimental/mod_cache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/experimental/mod_cache.c b/modules/experimental/mod_cache.c index bf7ccbebfe..5c43c12185 100644 --- a/modules/experimental/mod_cache.c +++ b/modules/experimental/mod_cache.c @@ -536,7 +536,7 @@ static int cache_in_filter(ap_filter_t *f, apr_bucket_brigade *in) } else if (exps != NULL && exp == APR_DATE_BAD) { /* if a broken Expires header is present, don't cache it */ - reason = apr_psprintf(p, "Broken expires header %s", exp); + reason = apr_psprintf(p, "Broken expires header %s", exps); } else if (r->args && exps == NULL) { /* if query string present but no expiration time, don't cache it -- 2.40.0