]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remove a useless break + tiny style fix (missing space)
authorChristophe Jaillet <jailletc36@apache.org>
Fri, 6 Jan 2017 09:59:32 +0000 (09:59 +0000)
committerChristophe Jaillet <jailletc36@apache.org>
Fri, 6 Jan 2017 09:59:32 +0000 (09:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1777557 13f79535-47bb-0310-9956-ffa450edef68

modules/cache/cache_util.c

index f86d023bb967c5de694c1bd7640b6850d04db622..0074b10002cf1cd645d783ab291cf9f6921acc8d 100644 (file)
@@ -640,7 +640,7 @@ int cache_check_freshness(cache_handle_t *h, cache_request_rec *cache,
 
     /* extract max-stale */
     if (cache->control_in.max_stale) {
-        if(cache->control_in.max_stale_value != -1) {
+        if (cache->control_in.max_stale_value != -1) {
             maxstale = cache->control_in.max_stale_value;
         }
         else {
@@ -1141,7 +1141,6 @@ static int cache_control_remove(request_rec *r, const char *cc_header,
                         }
                         found = 1;
                     }
-                    break;
                 }
                 break;
             }