From 1c299919c8f3e302ccc029a9b04b376d30ee4bb8 Mon Sep 17 00:00:00 2001 From: teastep Date: Sat, 15 Jun 2002 17:28:46 +0000 Subject: [PATCH] Fix bug in find_interfaces_by_option() git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@74 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb --- Shorewall/firewall | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Shorewall/firewall b/Shorewall/firewall index 54ef1de9f..af02aa821 100755 --- a/Shorewall/firewall +++ b/Shorewall/firewall @@ -849,7 +849,7 @@ find_interfaces_by_option() # $1 = option while read ignore interface subnet options; do expandv options list_search $1 `separate_list $options` && \ - echo `expand $interface` && break 1 + echo `expand $interface` done < $TMP_DIR/interfaces }