X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Finit.pl;h=0107f91645aa7d1ec3054e14d03b694c04c0fcfa;hb=bfa8589d67aebae38f9ed41b4539577ad45b8f94;hp=36309e93ab6408d878c99c7bc58fde10adcc3e18;hpb=118cbdbcf7e06d022a3030670c0e70b05bd8c5b3;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(); }