From 980ea8f908bcfc89be566b7b17d5579a7875200d Mon Sep 17 00:00:00 2001 From: Dirk Koopman Date: Mon, 2 Jul 2007 18:16:59 +0100 Subject: [PATCH] fix typo in links --- cmd/links.pl | 7 ++++--- perl/Version.pm | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/cmd/links.pl b/cmd/links.pl index cfae3b36..4bad6285 100644 --- a/cmd/links.pl +++ b/cmd/links.pl @@ -29,8 +29,10 @@ foreach $dxchan ( sort {$a->call cmp $b->call} DXChannel::get_all_nodes ) { my $pingint = $dxchan->pingint; my $ping = $dxchan->is_node && $dxchan != $main::me ? sprintf("%8.2f",$dxchan->pingave) : ""; my $iso = $dxchan->isolate ? 'Y' :' '; - my ($fin, $fout) = (' ', ' '); - unless ($dxchan->do_pc92) { + my ($fin, $fout, $pc92) = (' ', ' ', ' '); + if ($dxchan->do_pc9x) { + $pc92 = 'Y'; + } else { my $f; if ($f = $dxchan->inroutefilter) { $fin = $dxchan->inroutefilter =~ /node_default/ ? 'D' : 'Y'; @@ -45,7 +47,6 @@ 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_pc9x ? 'Y' : ''; push @out, sprintf "%10s $sort $t$ping $obscount %5d %5d $iso $fin $fout $pc92", $call, $pingint, $lastt; } diff --git a/perl/Version.pm b/perl/Version.pm index 41948ab8..50a7ce66 100644 --- a/perl/Version.pm +++ b/perl/Version.pm @@ -11,6 +11,6 @@ use vars qw($version $subversion $build); $version = '1.54'; $subversion = '0'; -$build = '99'; +$build = '100'; 1; -- 2.34.1