You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2014/04/30 18:53:01 UTC

svn commit: r1591394 - /httpd/httpd/trunk/modules/cache/mod_cache.c

Author: ylavic
Date: Wed Apr 30 16:53:00 2014
New Revision: 1591394

URL: http://svn.apache.org/r1591394
Log:
mod_cache: follow up to r1591390

Fix code typo.

Modified:
    httpd/httpd/trunk/modules/cache/mod_cache.c

Modified: httpd/httpd/trunk/modules/cache/mod_cache.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/mod_cache.c?rev=1591394&r1=1591393&r2=1591394&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/mod_cache.c (original)
+++ httpd/httpd/trunk/modules/cache/mod_cache.c Wed Apr 30 16:53:00 2014
@@ -1136,7 +1136,7 @@ static apr_status_t cache_save_filter(ap
         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;
             }