From: minima Date: Tue, 23 Jan 2007 17:16:05 +0000 (+0000) Subject: use correct do_pc9x call X-Git-Tag: 1.54~11 X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=38e5ac5a541f1bdf1f373d59cc3dcd0c993ae800 use correct do_pc9x call --- diff --git a/cmd/links.pl b/cmd/links.pl index d0dc49ec..3487d891 100644 --- a/cmd/links.pl +++ b/cmd/links.pl @@ -34,7 +34,7 @@ foreach $dxchan ( sort {$a->call cmp $b->call} DXChannel::get_all_nodes ) { $sort = "DXNT" if $dxchan->is_dxnet; $sort = "AR-C" if $dxchan->is_arcluster; $sort = "AK1A" if $dxchan->is_ak1a; - my $pc92 = $dxchan->do_pc92 ? 'Y' : ''; + my $pc92 = $dxchan->do_pc9x ? 'Y' : ''; push @out, sprintf "%10s $sort $t$ping $obscount %5d %5d $pc92", $call, $pingint, $lastt; }