From: Jim Jagielski Date: Mon, 21 Nov 2011 15:55:29 +0000 (+0000) Subject: Merge r1204555 from trunk: X-Git-Tag: 2.3.16~129 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=17cfe16efd848506d83c4e2c19c3b6cb3d2927f7;p=thirdparty%2Fapache%2Fhttpd.git Merge r1204555 from trunk: value never used: dead assignment Reviewed/backported by: jim git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1204561 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/mod_cache.c b/modules/cache/mod_cache.c index af7be135231..9b655dc9d08 100644 --- a/modules/cache/mod_cache.c +++ b/modules/cache/mod_cache.c @@ -1292,7 +1292,6 @@ static int cache_save_filter(ap_filter_t *f, apr_bucket_brigade *in) if (lastmod != APR_DATE_BAD && lastmod > date) { /* if it's in the future, then replace by date */ lastmod = date; - lastmods = dates; ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "cache: Last modified is in the future, " "replacing with now");