From: minima Date: Sat, 16 Jun 2001 11:41:08 +0000 (+0000) Subject: allow 'route' to find all routable things instead of just nodes X-Git-Url: http://dxcluster.net/gitweb/gitweb.cgi?a=commitdiff_plain;h=9685d27bb27511ec2409f323096c68a3b25156fd;p=spider.git allow 'route' to find all routable things instead of just nodes --- diff --git a/perl/DXProt.pm b/perl/DXProt.pm index e184685b..f72fe890 100644 --- a/perl/DXProt.pm +++ b/perl/DXProt.pm @@ -1488,7 +1488,7 @@ sub route # always send it down the local interface if available my $dxchan = DXChannel->get($call); unless ($dxchan) { - my $cl = Route::Node::get($call); + my $cl = Route::get($call); $dxchan = $cl->dxchan if $cl; if (ref $dxchan) { if (ref $self && $dxchan eq $self) {