public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] rules.pl: Proposed patch - Fix for missing bracket
@ 2023-03-12 13:28 Matthias Fischer
  2023-03-12 17:19 ` Bernhard Bitsch
  0 siblings, 1 reply; 2+ messages in thread
From: Matthias Fischer @ 2023-03-12 13:28 UTC (permalink / raw)
  To: development

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

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 80985ca53..6c08feb86 100644
--- a/config/firewall/rules.pl
+++ b/config/firewall/rules.pl
@@ -761,7 +761,7 @@ sub ipblocklist () {
 			}
 
 			# Check if logging is enabled.
-			if($blocklistsettings{'LOGGING'}) && ($blocklistsettings{'LOGGING'} eq "on")) {
+			if(($blocklistsettings{'LOGGING'}) && ($blocklistsettings{'LOGGING'} eq "on")) {
 				# Create logging rule.
 				run("$IPTABLES -A ${blocklist}_DROP -j LOG -m limit --limit 10/second --log-prefix \"BLKLST_$blocklist \"");
 			}
-- 
2.34.1


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

* Re: [PATCH] rules.pl: Proposed patch - Fix for missing bracket
  2023-03-12 13:28 [PATCH] rules.pl: Proposed patch - Fix for missing bracket Matthias Fischer
@ 2023-03-12 17:19 ` Bernhard Bitsch
  0 siblings, 0 replies; 2+ messages in thread
From: Bernhard Bitsch @ 2023-03-12 17:19 UTC (permalink / raw)
  To: development

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

Good find. ;)

Reviewed-by: Bernhard Bitsch <bbitsch(a)ipfire.org>

Am 12.03.2023 um 14:28 schrieb Matthias Fischer:
> 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 80985ca53..6c08feb86 100644
> --- a/config/firewall/rules.pl
> +++ b/config/firewall/rules.pl
> @@ -761,7 +761,7 @@ sub ipblocklist () {
>   			}
>   
>   			# Check if logging is enabled.
> -			if($blocklistsettings{'LOGGING'}) && ($blocklistsettings{'LOGGING'} eq "on")) {
> +			if(($blocklistsettings{'LOGGING'}) && ($blocklistsettings{'LOGGING'} eq "on")) {
>   				# Create logging rule.
>   				run("$IPTABLES -A ${blocklist}_DROP -j LOG -m limit --limit 10/second --log-prefix \"BLKLST_$blocklist \"");
>   			}

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

end of thread, other threads:[~2023-03-12 17:19 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-12 13:28 [PATCH] rules.pl: Proposed patch - Fix for missing bracket Matthias Fischer
2023-03-12 17:19 ` Bernhard Bitsch

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