fix the last 5 minute dups
[spider.git] / cmd / show / vhfstats.pl
index b3f1a0780b51d216d895ca5eca95bc85cde73ecd..b3584b59cadd971f20d35a4a2840b55cd8be8611 100644 (file)
@@ -35,17 +35,17 @@ for ($i = 0; $i < $days; $i++) {
 my @out;
 my @tot;
 
-push @out, $self->msg('statvhf');
+push @out, $self->msg('statvhf', cldate(time));
 push @out, sprintf "%11s|%6s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|%5s|", qw(Date Total 6m 4m 2m 70cm 23cm 13cm 9cm 6cm 3cm);
 foreach my $ref (@in) {
        my $linetot = 0;
-       foreach my $j (12..14,16..21) {
+       foreach my $j (14..16,18..23) {
                $tot[$j] += $ref->[$j];
                $tot[0] += $ref->[$j];
                $linetot += $ref->[$j];
        }
-       push @out, join('|', sprintf("%11s|%6d", $ref->[0]->as_string, $linetot), map {$_ ? sprintf("%5d", $_) : '     '} @$ref[12..14,16..21]) . '|';
+       push @out, join('|', sprintf("%11s|%6d", $ref->[0]->as_string, $linetot), map {$_ ? sprintf("%5d", $_) : '     '} @$ref[14..16,18..23]) . '|';
 }
-push @out, join('|', sprintf("%11s|%6d", 'Total', $tot[0]), map {$_ ? sprintf("%5d", $_) : '     '} @tot[12..14,16..21]) . '|';
+push @out, join('|', sprintf("%11s|%6d", 'Total', $tot[0]), map {$_ ? sprintf("%5d", $_) : '     '} @tot[14..16,18..23]) . '|';
 
 return (1, @out);