Exempt policy chains from optimization level 8.

Signed-off-by: Tom Eastep <teastep@shorewall.net>
This commit is contained in:
Tom Eastep 2011-07-23 16:34:01 -07:00
parent b789d825f8
commit ea4b8cdb6f

View File

@ -2595,7 +2595,7 @@ sub optimize_level4( $$ ) {
sub optimize_level8( $$$ ) {
my ( $table, $tableref , $passes ) = @_;
my $progress = 1;
my @chains = ( grep $_->{referenced} && ! $_->{builtin}, values %{$tableref} );
my @chains = ( grep $_->{referenced} && ! ( $_->{builtin} || $_->{is_policy} ), values %{$tableref} );
my @chains1 = @chains;
my $chains = @chains;
my $chainseq = 0;