From: Bill Stoddard Date: Tue, 17 Dec 2002 19:12:38 +0000 (+0000) Subject: SHould be using ths string form of exp (which is exps). X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=379a9d11e6f19a3c20594cd6836ee473349229a3;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/experimental/mod_cache.c b/modules/experimental/mod_cache.c index bf7ccbebfe7..5c43c12185f 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