From bbbea6f9ba548e86e96893232f2f16c3e1875494 Mon Sep 17 00:00:00 2001 From: Rob Brewer Date: Sun, 3 Apr 2022 10:52:56 +0200 Subject: [PATCH] rules.pl: Add space at the end of the log prefix. This improves the readabiliy when digging through the logs. Signed-off-by: Rob Brewer Signed-off-by: Stefan Schantl --- 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 c578405ba0..b800e3063e 100644 --- a/config/firewall/rules.pl +++ b/config/firewall/rules.pl @@ -751,7 +751,7 @@ sub ipblocklist () { # Check if logging is enables. 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.2