+04Feb23=======================================================================
+1. Fixed sh/log so that callsigns beginning with a digit (or several) are
+ printed rather than being ignored.
+ This affects: show/ann, chat, log, rcmd and wx
03Feb23=======================================================================
1. Fix is_ipaddr to accept trailing '::' on IPV6 addresses.
2. Fix and extend the TEST program 'showdx' so that it now works on the mojo
#
# print out the general log file for chat only
#
-# Copyright (c) 1998-2003 - Dirk Koopman G1TLH
+# Copyright (c) 1998-2023 - Dirk Koopman G1TLH
#
#
#
next if $to;
}
next if $who;
- if ($f !~ /^\d+/) {
+ if ($f !~ /^\d+$/) {
($who) = $f;
}
# ($who) = $f =~ /^(\w+)/o;
($to) = $f =~ /^(\d+)$/ if !$to; # is it a to count?
next if $to;
}
- unless ($f =~ /^\d+/) {
+ unless ($f =~ /^\d+$/) {
$who = $f;
next if $who;
}