From 85cae3c7f870456af46b15fe937fee48d5bda99b Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Fri, 19 Jan 2018 12:47:17 -0800 Subject: [PATCH] Add parens to improve readability Signed-off-by: Tom Eastep --- Shorewall/Perl/Shorewall/Rules.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall/Perl/Shorewall/Rules.pm b/Shorewall/Perl/Shorewall/Rules.pm index 5f41aa120..feaab8f3b 100644 --- a/Shorewall/Perl/Shorewall/Rules.pm +++ b/Shorewall/Perl/Shorewall/Rules.pm @@ -5719,7 +5719,7 @@ sub process_snat1( $$$$$$$$$$$$ ) { $params, $loglevel, $source, - supplied $destnets && $destnets ne '-' ? $inaction ? $destnets : join( ':', $interface, $destnets ) : $inaction ? '-' : $interface, + supplied( $destnets ) && $destnets ne '-' ? $inaction ? $destnets : join( ':', $interface, $destnets ) : $inaction ? '-' : $interface, $proto, $ports, $ipsec,