From 19dea210af2b81a2b16f36a539446757ecf20290 Mon Sep 17 00:00:00 2001 From: Kees Monshouwer Date: Mon, 13 May 2013 22:10:28 +0200 Subject: [PATCH] add experimental direct dnskey support to rfc2136 --- pdns/rfc2136handler.cc | 2 +- regression-tests/start-test-stop | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pdns/rfc2136handler.cc b/pdns/rfc2136handler.cc index 160b93cfc5..11e2b50f56 100644 --- a/pdns/rfc2136handler.cc +++ b/pdns/rfc2136handler.cc @@ -96,7 +96,7 @@ uint16_t PacketHandler::performUpdate(const string &msgPrefix, const DNSRecord * return 0; } - if (!isPresigned && (rrType == QType::RRSIG || rrType == QType::DNSKEY) ) { + if (!isPresigned && ((!::arg().mustDo("experimental-direct-dnskey") && rrType == QType::DNSKEY) || rrType == QType::RRSIG)) { L<