X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fstat%2Froute_node.pl;h=0c7f222471f6de74a7b4a116ed10fe4651d4834b;hb=cfa6a715412c7c4972ec85034bd2d945751317cb;hp=05560e70762d5c4e5c230d986122efb658c8139a;hpb=34f47f7d220c9244769f1c6360a92fcae18803ba;p=spider.git diff --git a/cmd/stat/route_node.pl b/cmd/stat/route_node.pl index 05560e70..0c7f2224 100644 --- a/cmd/stat/route_node.pl +++ b/cmd/stat/route_node.pl @@ -9,7 +9,7 @@ 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();