Skip to content

Commit

Permalink
Merge pull request #13897 from Habbie/backport-13841-to-auth-4.9.x
Browse files Browse the repository at this point in the history
auth 4.9: do not disable ns records at apex in consumer zones
  • Loading branch information
Habbie committed Mar 14, 2024
2 parents 9378038 + e97dc94 commit e988454
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 e988454

Please sign in to comment.