fixed little buglet with can't ref hash {'0'}
authordjk <djk>
Sun, 2 May 1999 17:46:07 +0000 (17:46 +0000)
committerdjk <djk>
Sun, 2 May 1999 17:46:07 +0000 (17:46 +0000)
perl/DXProt.pm

index b446b713f3e705994c1516995ff21583335425c3..45e9b30f8ea3121b51a99f0ee48fe92c401aab16 100644 (file)
@@ -734,8 +734,9 @@ sub send_local_config
                # and are not themselves isolated, this to make sure that isolated nodes
         # don't appear outside of this node
                @nodes = DXNode::get_all();
-               @nodes = grep { $_->dxchan != $self && !$_->dxchan->{isolate} } @nodes;
                @nodes = grep { $_->{call} ne $main::mycall } @nodes;
+               @nodes = grep { $_->dxchan != $self } @nodes if @nodes;
+               @nodes = grep { !$_->dxchan->{isolate} } @nodes if @nodes;
                @localnodes = grep { $_->dxchan->{call} eq $_->{call} } @nodes if @nodes;
                unshift @localnodes, DXCluster->get_exact($main::mycall);
                @remotenodes = grep { $_->dxchan->{call} ne $_->{call} } @nodes if @nodes;