summaryrefslogtreecommitdiffstats
path: root/modules/cache
diff options
context:
space:
mode:
authorYann Ylavic <ylavic@apache.org>2014-04-30 18:53:00 +0200
committerYann Ylavic <ylavic@apache.org>2014-04-30 18:53:00 +0200
commit308f0615fd7d950e37360be008524fd9c5e9141d (patch)
tree0a27900120b5967b9da47847dc16656292371880 /modules/cache
parentmod_cache: follow up to r1591322 (diff)
downloadapache2-308f0615fd7d950e37360be008524fd9c5e9141d.tar.xz
apache2-308f0615fd7d950e37360be008524fd9c5e9141d.zip
mod_cache: follow up to r1591390
Fix code typo. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1591394 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/cache')
-rw-r--r--modules/cache/mod_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cache/mod_cache.c b/modules/cache/mod_cache.c
index 042e0e042f..afa1980515 100644
--- a/modules/cache/mod_cache.c
+++ b/modules/cache/mod_cache.c
@@ -1136,7 +1136,7 @@ static apr_status_t cache_save_filter(ap_filter_t *f, apr_bucket_brigade *in)
if (cache_header_cmp(r->pool, left, right, "ETag")) {
ehs = "ETag";
}
- for (eh = MOD_CACHE_ENTITY_HEADERS; *eh && !reason; ++eh) {
+ for (eh = MOD_CACHE_ENTITY_HEADERS; *eh; ++eh) {
if (cache_header_cmp(r->pool, left, right, *eh)) {
ehs = (ehs) ? apr_pstrcat(r->pool, ehs, ", ", *eh, NULL) : *eh;
}