mbox

rules.pl: fix missing blank in 'if'-condition

Message ID 20170819113058.25195-1-matthias.fischer@ipfire.org
State Deferred
Headers

Message

Matthias Fischer Aug. 19, 2017, 9:30 p.m. UTC
  Triggered by https://forum.ipfire.org/viewtopic.php?f=22&t=19304

Best,
Matthias

Signed-off-by: Matthias Fischer <matthias.fischer@ipfire.org>
---
 config/firewall/rules.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Comments

Michael Tremer Aug. 21, 2017, 9:17 p.m. UTC | #1
Hi,

this has been set to deferred on Patchwork. Why?

Best,
-Michael

On Sat, 2017-08-19 at 13:30 +0200, Matthias Fischer wrote:
> Triggered by https://forum.ipfire.org/viewtopic.php?f=22&t=19304
> 
> Best,
> Matthias
> 
> Signed-off-by: Matthias Fischer <matthias.fischer@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");
>  		}
>  	}
  
Matthias Fischer Aug. 22, 2017, 2:16 a.m. UTC | #2
Hi,

For unknown reasons I couldn't reproduce this error even with the
original file. So I deferred this patch - I'm not sure anymore that this
is really a bug!?

The whole story (german) can be found here:
https://forum.ipfire.org/viewtopic.php?f=22&t=19304

I fear I was a bit too fast...

Best,
Matthias

On 21.08.2017 13:17, Michael Tremer wrote:
> Hi,
> 
> this has been set to deferred on Patchwork. Why?
> 
> Best,
> -Michael
> 
> On Sat, 2017-08-19 at 13:30 +0200, Matthias Fischer wrote:
>> Triggered by https://forum.ipfire.org/viewtopic.php?f=22&t=19304
>> 
>> Best,
>> Matthias
>> 
>> Signed-off-by: Matthias Fischer <matthias.fischer@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");
>>  		}
>>  	}
>