From 1f7b0990bb505ca7e956d3d1eb15bfe31815ec53 Mon Sep 17 00:00:00 2001 From: teastep Date: Mon, 15 Dec 2008 01:17:59 +0000 Subject: [PATCH] Avoid extra 'done' git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@9063 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall-perl/Shorewall/Rules.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Shorewall-perl/Shorewall/Rules.pm b/Shorewall-perl/Shorewall/Rules.pm index b9728ec70..c87a77a0d 100644 --- a/Shorewall-perl/Shorewall/Rules.pm +++ b/Shorewall-perl/Shorewall/Rules.pm @@ -854,9 +854,9 @@ sub setup_mac_lists( $ ) { } add_commands( $chainref, " echo \"-A $chainref->{name} -s \$address -d 224.0.0.0/4 -j RETURN\" >&3" ); - } - add_command( $chainref, 'done' ); + add_command( $chainref, 'done' ); + } } }