From 03092f23186ed243dccb1b9e43c8539e072e13ab Mon Sep 17 00:00:00 2001 From: Bert Hubert Date: Sun, 30 Jan 2011 21:27:50 +0000 Subject: [PATCH] even if we do opt-out, the NSEC3PARAM flags field should be 0 git-svn-id: svn://svn.powerdns.com/pdns/trunk/pdns@1940 d19b8d6e-7fed-0310-83ef-9ca221ded41b --- pdns/packethandler.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/pdns/packethandler.cc b/pdns/packethandler.cc index 02b703abf8..1bbfa48770 100644 --- a/pdns/packethandler.cc +++ b/pdns/packethandler.cc @@ -233,6 +233,7 @@ int PacketHandler::doNSEC3PARAMRequest(DNSPacket *p, DNSPacket *r, const SOAData rr.qtype=QType::NSEC3PARAM; rr.ttl=sd.default_ttl; rr.qname=p->qdomain; + ns3prc.d_flags = 0; // for unknown reasons, the NSEC3PARAM 'flag' always needs to be zero. rr.content=ns3prc.getZoneRepresentation(); rr.auth = true; r->addRecord(rr); -- 2.47.3