From 2fcde747f87384dddafee9fae391b2d9b94375c3 Mon Sep 17 00:00:00 2001 From: Dirk Koopman Date: Mon, 27 Dec 2021 20:32:09 +0000 Subject: [PATCH] fix missing ';' in dx.pl --- Changes | 2 ++ cmd/dx.pl | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index a28f5a25..6b338945 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,5 @@ +27Dec21======================================================================= +1. Fix "kwalitee control" issue in /spider/cmd/dx.pl. 22Dec21======================================================================= 1. Add the possibility to do "sender verify" that spots (and later on, other things like announce etc) are coming from spotters that exist on the node diff --git a/cmd/dx.pl b/cmd/dx.pl index 4a80df0e..306fb77b 100644 --- a/cmd/dx.pl +++ b/cmd/dx.pl @@ -24,7 +24,7 @@ return (1, $self->msg('e5')) if $self->remotecmd || $self->inscript; return (1, $self->msg('e28')) unless $self->isregistered; -my $addr = $self->hostname || '127.0.0.1' +my $addr = $self->hostname || '127.0.0.1'; Log('cmd', "$self->{call}|$addr|dx|$line"); my @bad; -- 2.34.1