From: Pieter Lexis Date: Fri, 24 Aug 2018 14:54:20 +0000 (+0200) Subject: ixfrdist: use port 53 by default for IPs from json X-Git-Tag: dnsdist-1.3.3~147^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f2b4c540110cc3c872c0e1b1617a894caf2976a;p=thirdparty%2Fpdns.git ixfrdist: use port 53 by default for IPs from json --- diff --git a/pdns/ixfrdist.cc b/pdns/ixfrdist.cc index 24b930aff7..2b4739a523 100644 --- a/pdns/ixfrdist.cc +++ b/pdns/ixfrdist.cc @@ -68,7 +68,7 @@ struct convert { return false; } try { - rhs = ComboAddress(node.as()); + rhs = ComboAddress(node.as(), 53); return true; } catch(const runtime_error &e) { return false;