]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Source Format Enforcement (#295) M-staged-PR295
authorsquidadm <squidadm@users.noreply.github.com>
Sun, 30 Sep 2018 20:14:00 +0000 (20:14 +0000)
committerSquid Anubis <squid-anubis@squid-cache.org>
Mon, 1 Oct 2018 05:16:50 +0000 (05:16 +0000)
src/anyp/Uri.cc

index f570e6f3a3b3b0feca8d30c66ac8ab8ef3281d01..c8249307d41b152d255f197346a813aacd0855f2 100644 (file)
@@ -945,7 +945,7 @@ AnyP::Uri::cleanup(const char *uri)
     switch (Config.uri_whitespace) {
     case URI_WHITESPACE_ALLOW:
         flags |= RFC1738_ESCAPE_NOSPACE;
-        // fall through to next case
+    // fall through to next case
     case URI_WHITESPACE_ENCODE:
         flags |= RFC1738_ESCAPE_UNESCAPED;
         cleanedUri = xstrndup(rfc1738_do_escape(uri, flags), MAX_URL);
@@ -988,3 +988,4 @@ AnyP::Uri::cleanup(const char *uri)
     assert(cleanedUri);
     return cleanedUri;
 }
+