Skip to content

Commit

Permalink
auth: do not disable ns records at apex in consumer zones
Browse files Browse the repository at this point in the history
  • Loading branch information
mind04 committed Feb 25, 2024
1 parent f95d11b commit 4057f3d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pdns/auth-secondarycommunicator.cc
Expand Up @@ -331,6 +331,9 @@ static bool catalogProcess(const DomainInfo& di, vector<DNSResourceRecord>& rrs,
hasSOA = true;
continue;
}
if (rr.qtype == QType::NS) {
continue;
}
}

else if (rr.qname == DNSName("version") + di.zone && rr.qtype == QType::TXT) {
Expand Down

0 comments on commit 4057f3d

Please sign in to comment.