Back out a couple of harmless but unintended changes

This commit is contained in:
Tom Eastep 2010-07-05 08:02:51 -07:00
parent aa6bb6e911
commit 542557069e

View File

@ -736,7 +736,7 @@ sub off_firewall_zones() {
}
sub non_firewall_zones() {
grep ( $zones{$_}{type} != FIREWALL , @zones );
grep ( $zones{$_}{type} != FIREWALL , @zones );
}
sub all_parent_zones() {
@ -1679,7 +1679,7 @@ sub find_hosts_by_option( $ ) {
}
for my $interface ( @interfaces ) {
if ( ( ! $interfaces{$interface}{zone} ) && $interfaces{$interface}{options}{$option} ) {
if ( ! $interfaces{$interface}{zone} && $interfaces{$interface}{options}{$option} ) {
push @hosts, [ $interface, 'none', ALLIP , [] ];
}
}