From 9685d27bb27511ec2409f323096c68a3b25156fd Mon Sep 17 00:00:00 2001 From: minima Date: Sat, 16 Jun 2001 11:41:08 +0000 Subject: [PATCH] allow 'route' to find all routable things instead of just nodes --- perl/DXProt.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.34.1