From b268776cd6dca7cb8170cea65b7bdd625b505a99 Mon Sep 17 00:00:00 2001 From: teastep Date: Sat, 19 Apr 2008 17:23:59 +0000 Subject: [PATCH] Fix routestopped with ADMINISABSENTMINDED=No git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@8440 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall-perl/Shorewall/Rules.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall-perl/Shorewall/Rules.pm b/Shorewall-perl/Shorewall/Rules.pm index f6493b980..6e004545d 100644 --- a/Shorewall-perl/Shorewall/Rules.pm +++ b/Shorewall-perl/Shorewall/Rules.pm @@ -456,7 +456,7 @@ sub process_routestopped() { my $desti = match_dest_dev $interface; emit "\$IPTABLES -A INPUT $sourcei $source -j ACCEPT"; - emit "\$IPTABLES -A OUTPUT $desti $dest -j ACCEPT" if $config{ADMINISABSENTMINDED}; + emit "\$IPTABLES -A OUTPUT $desti $dest -j ACCEPT" unless $config{ADMINISABSENTMINDED}; my $matched = 0;