X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Finit.pl;fp=cmd%2Finit.pl;h=0107f91645aa7d1ec3054e14d03b694c04c0fcfa;hb=7c1e8be08db2526caaa1c1bb7905548841b696e2;hp=36309e93ab6408d878c99c7bc58fde10adcc3e18;hpb=0542c1871c9563b7577a4b9a1282fd5d2c203047;p=spider.git diff --git a/cmd/init.pl b/cmd/init.pl index 36309e93..0107f916 100644 --- a/cmd/init.pl +++ b/cmd/init.pl @@ -20,10 +20,10 @@ foreach $call (@calls) { if ($dxchan->is_ak1a) { # first clear out any nodes on this dxchannel - my @gonenodes = map { $_->dxchan == $dxchan ? $_ : () } DXNode::get_all(); + my @gonenodes = grep { $_->dxchan == $dxchan } DXNode::get_all(); foreach my $node (@gonenodes) { next if $node->dxchan == $DXProt::me; - next if $node->dxchan == $dxchan; + next unless $node->dxchan == $dxchan; DXProt::broadcast_ak1a(DXProt::pc21($node->call, 'Gone, re-init') , $dxchan) unless $dxchan->{isolate}; $node->del(); }