Fix syntax error

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@5463 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2007-03-08 20:48:05 +00:00
parent 59c6aaa3e0
commit 1304147d79

View File

@ -1,7 +1,6 @@
#! /usr/bin/perl -w
use strict;
use Net::IPv4Addr qw( :all );
#
# IPSEC Option types
#
@ -150,7 +149,10 @@ my %interface_options;
my %interface_zone;
my @policy_chains;
my %chain_table = ( raw = {} , mangle = {}, net = {}, filter = {} );
my %chain_table = ( raw => {} ,
mangle => {},
net => {},
filter => {} );
my $nat_table = $chain_table{nat};
my $mangle_table = $chain_table{mangle};