From f91bf1eb0c210b4008ecb9604b01b541a4f5917e Mon Sep 17 00:00:00 2001 From: teastep Date: Wed, 9 May 2007 23:54:47 +0000 Subject: [PATCH] Fix mess-up in last version git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@6314 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- 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 e32729b49..53a51c88c 100644 --- a/Shorewall-perl/Shorewall/Config.pm +++ b/Shorewall-perl/Shorewall/Config.pm @@ -309,7 +309,7 @@ my %no_pad = ( COMMENT => 1, sub split_line( $$$ ) { my ( $mincolumns, $maxcolumns, $description ) = @_; - fatal_error "Shorewall Configuration file entries may not contain double quotes, single back quotes or backslashes" if $line =~ /"`\\/; + fatal_error "Shorewall Configuration file entries may not contain double quotes, single back quotes or backslashes" if $line =~ /["`\\]/; my @line = split /\s+/, $line;