From b25ece75de21228f67412c939e15c772a67b581e Mon Sep 17 00:00:00 2001 From: Tom Eastep Date: Mon, 19 Nov 2012 08:18:32 -0800 Subject: [PATCH] Don't leave temporary chain in the raw table when LOAD_HELPERS_ONLY=No Signed-off-by: Tom Eastep --- Shorewall/Perl/Shorewall/Config.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall/Perl/Shorewall/Config.pm b/Shorewall/Perl/Shorewall/Config.pm index c7252f8a2..4be8c102b 100644 --- a/Shorewall/Perl/Shorewall/Config.pm +++ b/Shorewall/Perl/Shorewall/Config.pm @@ -3738,7 +3738,7 @@ sub determine_capabilities() { qt1( "$iptables -t nat -X $sillyname" ); } - if ( $capabilities{RAW_ENABLED} ) { + if ( $capabilities{RAW_TABLE} ) { qt1( "$iptables -t raw -F $sillyname" ); qt1( "$iptables -t raw -X $sillyname" ); }