firewall: Fix missing whitespace for blocklist messages

Message ID 20221007162116.90603-1-michael.tremer@ipfire.org
State Accepted
Commit dc84e16d4d058460febe9332435307d93d36d82e
Headers
Series firewall: Fix missing whitespace for blocklist messages |

Commit Message

Michael Tremer Oct. 7, 2022, 4:21 p.m. UTC
  Fixes: #12934
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
---
 config/firewall/rules.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

diff --git a/config/firewall/rules.pl b/config/firewall/rules.pl
index e1d7718a8..30ad20df1 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.