From f812070f60ef7450a1f1b531d5fe84599510e011 Mon Sep 17 00:00:00 2001 From: Tore Anderson Date: Thu, 20 Mar 2025 22:25:13 +0100 Subject: [PATCH] Separate DNS64 servers with spaces in debug output --- clatd | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/clatd b/clatd index f3e8ff7..bb102f7 100755 --- a/clatd +++ b/clatd @@ -357,7 +357,8 @@ sub get_plat_prefix_from_dns64 { $res->nameservers(map { Net::IP->new($_)->version() == 4 ? "::ffff:$_" : $_; } $res->nameservers); - d2("Nameservers after Net::DNS bug workaround: ", $res->nameservers); + d2("Nameservers after Net::DNS bug workaround: ", + join(" ", $res->nameservers)); my $pkt = $res->query('ipv4only.arpa', 'AAAA'); if(!$pkt) {