Fix bug in find_interfaces_by_option()

git-svn-id: https://shorewall.svn.sourceforge.net/svnroot/shorewall/trunk@74 fbd18981-670d-0410-9b5c-8dc0c1a9a2bb
This commit is contained in:
teastep 2002-06-15 17:28:46 +00:00
parent 65e4f035b0
commit 1c299919c8

View File

@ -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
}