X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fstat%2Froute_node.pl;h=0c7f222471f6de74a7b4a116ed10fe4651d4834b;hb=681ed7b3c6d79228a68054489058b619f62974bf;hp=05560e70762d5c4e5c230d986122efb658c8139a;hpb=c3505bcfc922cd712bad2c20b3479cf8d1dc54fe;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();