]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Fix debug message in ACLChecklist::bannedAction()
authorGarri Djavadyan <garryd@comnet.uz>
Sun, 30 Oct 2016 09:40:25 +0000 (22:40 +1300)
committerAmos Jeffries <squid3@treenet.co.nz>
Sun, 30 Oct 2016 09:40:25 +0000 (22:40 +1300)
src/acl/Checklist.cc

index 1748e38f7e1cc0fe3ba96373b26e90d84fb86cab..35c5cad48c22574f5cfedca2399be5d054ac375d 100644 (file)
@@ -397,7 +397,7 @@ bool
 ACLChecklist::bannedAction(const allow_t &action) const
 {
     const bool found = std::find(bannedActions_.begin(), bannedActions_.end(), action) != bannedActions_.end();
-    debugs(28, 5, "Action '" << action << "/" << action.kind << (found ? " is " : "is not") << " banned");
+    debugs(28, 5, "Action '" << action << "/" << action.kind << (found ? "' is " : "' is not") << " banned");
     return found;
 }