You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ja...@apache.org on 2017/01/06 09:59:32 UTC

svn commit: r1777557 - /httpd/httpd/trunk/modules/cache/cache_util.c

Author: jailletc36
Date: Fri Jan  6 09:59:32 2017
New Revision: 1777557

URL: http://svn.apache.org/viewvc?rev=1777557&view=rev
Log:
Remove a useless break + tiny style fix (missing space)

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

Modified: httpd/httpd/trunk/modules/cache/cache_util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/cache/cache_util.c?rev=1777557&r1=1777556&r2=1777557&view=diff
==============================================================================
--- httpd/httpd/trunk/modules/cache/cache_util.c (original)
+++ httpd/httpd/trunk/modules/cache/cache_util.c Fri Jan  6 09:59:32 2017
@@ -640,7 +640,7 @@ int cache_check_freshness(cache_handle_t
 
     /* 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_
                         }
                         found = 1;
                     }
-                    break;
                 }
                 break;
             }