From b160845713dd89dbea079801e9f5c0828c8f02ac Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Thu, 20 Oct 2016 14:54:01 -0700 Subject: [PATCH] Avoid compiler crash when LOAD_HELPERS_ONLY=Yes Signed-off-by: Tom Eastep --- Shorewall/Perl/Shorewall/Config.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shorewall/Perl/Shorewall/Config.pm b/Shorewall/Perl/Shorewall/Config.pm index 74d3e5738..980b609ec 100644 --- a/Shorewall/Perl/Shorewall/Config.pm +++ b/Shorewall/Perl/Shorewall/Config.pm @@ -4544,11 +4544,11 @@ sub IPSet_Match() { } sub IPSet_Match_Nomatch() { - have_capability 'IPSET_MATCH' && $capabilities{IPSET_MATCH_NOMATCH}; + have_capability( 'IPSET_MATCH' ) && $capabilities{IPSET_MATCH_NOMATCH}; } sub IPSet_Match_Counters() { - have_capability 'IPSET_MATCH' && $capabilities{IPSET_MATCH_COUNTERS}; + have_capability( 'IPSET_MATCH' ) && $capabilities{IPSET_MATCH_COUNTERS}; } sub IPSET_V5() {