remove newbi accent from 'new_chain'

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6009 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2007-04-18 21:07:32 +00:00
parent e1088b92bf
commit f85f952a77

View File

@ -454,11 +454,10 @@ sub new_chain($$)
{
my ($table, $chain) = @_;
my %ch;
my @rules;
$ch{name} = $chain;
$ch{log} = 1 if $globals{LOGRULENUMBERS};
$ch{rules} = \@rules;
$ch{log} = 1 if $globals{LOGRULENUMBERS};
$ch{rules} = [];
$ch{table} = $table;
$chain_table{$table}{$chain} = \%ch;
\%ch;