X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fstat%2Froute_node.pl;h=0c7f222471f6de74a7b4a116ed10fe4651d4834b;hb=cfa6a715412c7c4972ec85034bd2d945751317cb;hp=c546e60167112ba666371d1770bd25fb2479b492;hpb=412fb1b9e4070d7791f4e986b55bbc0c06f612ea;p=spider.git diff --git a/cmd/stat/route_node.pl b/cmd/stat/route_node.pl index c546e601..0c7f2224 100644 --- a/cmd/stat/route_node.pl +++ b/cmd/stat/route_node.pl @@ -3,13 +3,13 @@ # # Copyright (c) 2001 Dirk Koopman G1TLH # -# $Id$ +# # my ($self, $line) = @_; my @out; my @list = split /\s+/, $line; # generate a list of callsigns -@list = ($self->call) if !@list; # my channel if no callsigns +@list = ($self->call) unless @list; # my channel if no callsigns if ($self->priv > 5 && @list && uc $list[0] eq 'ALL') { push @out, "Node Callsigns in Routing Table"; @list = sort map {$_->call} Route::Node::get_all();