X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Finit.pl;h=7f5896f41b2774fe95d89b283b2e590ccc4d60c8;hb=5d4486dbbd2c0d758629b28a1a6e3b2f16c4bfb5;hp=2d0a38fc867185f9be2e65267ecdf99e835a3e0f;hpb=7694becd42a37ddbc1dfeb22f9667a167ea94dab;p=spider.git diff --git a/cmd/init.pl b/cmd/init.pl index 2d0a38fc..7f5896f4 100644 --- a/cmd/init.pl +++ b/cmd/init.pl @@ -18,11 +18,10 @@ foreach $call (@calls) { my $dxchan = DXChannel->get($call); if ($dxchan) { if ($dxchan->is_node) { - # first clear out any nodes on this dxchannel - my $node = Route::Node::get($self->{call}); - my @rout = $node->del_nodes if $node; - DXProt::route_pc21($self, @rout); + my $parent = Route::Node::get($call); + my @rout = $parent->del_nodes; + $dxchan->route_pc21($self, @rout) if @rout; $dxchan->send(DXProt::pc18()); $dxchan->state('init'); push @out, $self->msg('init1', $call);