public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] rules.pl: fix missing blank in 'if'-condition
@ 2017-08-19 11:30 Matthias Fischer
  2017-08-21 11:17 ` Michael Tremer
  0 siblings, 1 reply; 3+ messages in thread
From: Matthias Fischer @ 2017-08-19 11:30 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 715 bytes --]

Triggered by https://forum.ipfire.org/viewtopic.php?f=22&t=19304

Best,
Matthias

Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
---
 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 8b0c6ddc8..efbe9cfef 100644
--- a/config/firewall/rules.pl
+++ b/config/firewall/rules.pl
@@ -608,7 +608,7 @@ sub geoipblock {
 	# create iptables rules, if blocking this country
 	# is enabled.
 	foreach my $location (@locations) {
-		if($geoipsettings{$location} eq "on") {
+		if ($geoipsettings{$location} eq "on") {
 			run("$IPTABLES -A GEOIPBLOCK -m geoip --src-cc $location -j DROP");
 		}
 	}
-- 
2.14.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-08-21 16:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-19 11:30 [PATCH] rules.pl: fix missing blank in 'if'-condition Matthias Fischer
2017-08-21 11:17 ` Michael Tremer
2017-08-21 16:16   ` Matthias Fischer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox