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

index 078636a908ea2d9854a6afef3f747cf3e2efa339..7c803af28af71fe8d485717781f1dd9e63fdaf01 100644 (file)
@@ -394,7 +394,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;
 }