X-Git-Url: http://dxcluster.org/gitweb/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=cmd%2Fshow%2Froute.pl;h=c927e8dc265c4d55ed9a7bcf7604888ad0145249;hb=c1540ccd7990ec4bd151604dd63583d19fe4d0f6;hp=6d1c194c2f65b27dfe0aa3ff558303f571b53992;hpb=916f0deef0e085647471d5959a55c2ddb815a044;p=spider.git diff --git a/cmd/show/route.pl b/cmd/show/route.pl index 6d1c194c..c927e8dc 100644 --- a/cmd/show/route.pl +++ b/cmd/show/route.pl @@ -3,7 +3,7 @@ # # Copyright (c) 2001 Dirk Koopman G1TLH # -# $Id$ +# # my ($self, $line) = @_; @@ -12,8 +12,6 @@ my @out; return (1, $self->msg('e6')) unless @list; -use RouteDB; - my $l; foreach $l (@list) { my $ref = Route::get($l); @@ -23,13 +21,6 @@ foreach $l (@list) { } else { push @out, $self->msg('e7', $l); } - my @in = RouteDB::_sorted($l); - if (@in) { - push @out, "Learned Routes:"; - for (@in) { - push @out, "$l via $_->{call} count: $_->{count} last heard: " . atime($_->{t}); - } - } } return (1, @out);