From: Peter van Dijk Date: Mon, 30 Aug 2021 10:12:56 +0000 (+0200) Subject: use right remote for 2136 ACL X-Git-Tag: dnsdist-1.7.0-alpha1~14^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=898ff8518c8c0160a55bb8237109009e7b62c1ab;p=thirdparty%2Fpdns.git use right remote for 2136 ACL --- diff --git a/pdns/rfc2136handler.cc b/pdns/rfc2136handler.cc index ed0543792c..d590bccbb2 100644 --- a/pdns/rfc2136handler.cc +++ b/pdns/rfc2136handler.cc @@ -644,7 +644,7 @@ int PacketHandler::processUpdate(DNSPacket& p) { if (! ::arg().mustDo("dnsupdate")) return RCode::Refused; - string msgPrefix="UPDATE (" + itoa(p.d.id) + ") from " + p.getRemote().toString() + " for " + p.qdomain.toLogString() + ": "; + string msgPrefix="UPDATE (" + itoa(p.d.id) + ") from " + p.getRemoteString() + " for " + p.qdomain.toLogString() + ": "; g_log<