From f4e4181989c11c804396805df5f3ac3c1779df84 Mon Sep 17 00:00:00 2001 From: minima Date: Mon, 23 Apr 2001 08:54:36 +0000 Subject: [PATCH] fix very long standing bug in storing and transmitting spots. The decimal point was left off :-( --- Changes | 3 +++ perl/Spot.pm | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index e8fa0690..b33f106c 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,6 @@ +23Apr01======================================================================= +1. fix very long standing bug in storing and transmitting spots. The decimal +point was left off :-( 22Apr01======================================================================= 1. Sysops can now have full privileges if there is a ExtMsg listener on localhost (or everything) and they telnet to localhost and login with their diff --git a/perl/Spot.pm b/perl/Spot.pm index b5b75e38..a37a195e 100644 --- a/perl/Spot.pm +++ b/perl/Spot.pm @@ -102,7 +102,7 @@ sub prepare my @out = @_[0..4]; # just up to the spotter # normalise frequency - $_[0] = sprintf "%.f", $_[0]; + $_[0] = sprintf "%.1f", $_[0]; # remove ssids if present on spotter $out[4] =~ s/-\d+$//o; -- 2.34.1