From: Christophe Jaillet Date: Fri, 6 Jan 2017 09:59:32 +0000 (+0000) Subject: Remove a useless break + tiny style fix (missing space) X-Git-Tag: 2.5.0-alpha~811 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=a309dd8ef3f8a909409ce9dfd1ab26b0f187bf1e;p=thirdparty%2Fapache%2Fhttpd.git Remove a useless break + tiny style fix (missing space) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1777557 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/cache_util.c b/modules/cache/cache_util.c index f86d023bb96..0074b10002c 100644 --- a/modules/cache/cache_util.c +++ b/modules/cache/cache_util.c @@ -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; }