From bcf3a91dcafdb63c46120cae5dec6a105edcfcf1 Mon Sep 17 00:00:00 2001 From: Dirk Koopman Date: Sat, 1 Jan 2022 20:30:04 +0000 Subject: [PATCH] fix missing ; in spoof --- Changes | 2 ++ cmd/spoof.pl | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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; -- 2.34.1