mirror of
https://gitlab.com/shorewall/code.git
synced 2024-11-15 12:14:32 +01:00
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:
parent
59c6aaa3e0
commit
1304147d79
@ -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};
|
||||
|
Loading…
Reference in New Issue
Block a user