From dc84e16d4d058460febe9332435307d93d36d82e Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Fri, 7 Oct 2022 16:21:16 +0000 Subject: [PATCH] firewall: Fix missing whitespace for blocklist messages Fixes: #12934 Signed-off-by: Michael Tremer --- config/firewall/rules.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/firewall/rules.pl b/config/firewall/rules.pl index e1d7718a88..30ad20df1d 100644 --- a/config/firewall/rules.pl +++ b/config/firewall/rules.pl @@ -760,7 +760,7 @@ sub ipblocklist () { # Check if logging is enabled. if($blocklistsettings{'LOGGING'} eq "on") { # Create logging rule. - run("$IPTABLES -A ${blocklist}_DROP -j LOG -m limit --limit 10/second --log-prefix \"BLKLST_$blocklist\" "); + run("$IPTABLES -A ${blocklist}_DROP -j LOG -m limit --limit 10/second --log-prefix \"BLKLST_$blocklist \""); } # Create Drop rule. -- 2.39.5