From: minima Date: Sat, 9 Jun 2001 02:40:58 +0000 (+0000) Subject: make all the subsidiary nodes go as well as the dxchannel ones X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=5b418391511e712bda1dbe5c76431b9f45e13d13;p=spider.git make all the subsidiary nodes go as well as the dxchannel ones --- diff --git a/perl/DXProt.pm b/perl/DXProt.pm index da2c1c51..93cea623 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -1384,7 +1384,7 @@ sub send_local_config my $ref = Route::Node::get($self->{call}); my @rnodes = $ref->nodes; for my $n (@intcalls) { - push @remotenodes, Route::Node::get($n) if grep $n ne $_, @rnodes; + push @remotenodes, Route::Node::get($n) unless grep $n == $_, @rnodes; } unshift @localnodes, $main::routeroot; }