From: Dirk Koopman Date: Sat, 1 Jan 2022 20:30:04 +0000 (+0000) Subject: fix missing ; in spoof X-Git-Url: http://gb7djk.dxcluster.net/gitweb/gitweb.cgi?p=spider.git;a=commitdiff_plain;h=bcf3a91dcafdb63c46120cae5dec6a105edcfcf1 fix missing ; in spoof --- diff --git a/Changes b/Changes index 4cd06af1..1cb9c781 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +01Jan22======================================================================= +1. Fixed missing ';' in spoof 30Dec21======================================================================= 1. Try to fix (nuke) tabs in comment field. 28Dec21======================================================================= diff --git a/cmd/spoof.pl b/cmd/spoof.pl index c6d93e78..d4be673f 100644 --- a/cmd/spoof.pl +++ b/cmd/spoof.pl @@ -35,7 +35,7 @@ unless ($user) { # set up basic environment $self->call($call); $self->user($user); -my $addr = $self->hostname || '127.0.0.1' +my $addr = $self->hostname || '127.0.0.1'; Log('cmd', "$self->{call}|$addr|spoof|$line"); my @in = $self->run_cmd($newline); push @out, map {"spoof $call: $_"} @in;