Separate DNS64 servers with spaces in debug output

This commit is contained in:
Tore Anderson
2025-03-20 22:26:58 +01:00
parent f91d96b991
commit f812070f60
+2 -1
View File
@@ -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) {