X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;f=cmd%2Fshow%2Froute.pl;h=4ebebde3242dd799c8568afc2b348af6ff355aa1;hb=a9f28e80e3936421f830bba0eacffd3bb509a9cb;hp=45214003ac22165ebfefc2079935b5e4ba257113;hpb=6624dcdf07d628e8d6a16fc6549edf40be25b7b2;p=spider.git diff --git a/cmd/show/route.pl b/cmd/show/route.pl index 45214003..4ebebde3 100644 --- a/cmd/show/route.pl +++ b/cmd/show/route.pl @@ -16,9 +16,8 @@ my $l; foreach $l (@list) { my $ref = Route::get($l); if ($ref) { - my $parents = join ',', $ref->parents; - my $dxchan = $ref->dxchan; - push @out, $self->msg('route', $l, $parents, $dxchan->call); + my $parents = $ref->isa('Route::Node') ? $l : join(',', $ref->parents); + push @out, $self->msg('route', $l, $parents, join(',', map {$_->call} $ref->alldxchan)); } else { push @out, $self->msg('e7', $l); }