From: Mark Andrews Date: Wed, 14 Aug 2013 22:04:58 +0000 (+1000) Subject: 3631. [bug] Remove spurious warning about missing signatures when X-Git-Tag: v9.10.0a1~166 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=06ace051e7522b153b487581c9439fc8c162fb18;p=thirdparty%2Fbind9.git 3631. [bug] Remove spurious warning about missing signatures when qtype is SIG. [RT #34600] --- diff --git a/CHANGES b/CHANGES index da88366e32a..0bc62636cfa 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ +3631. [bug] Remove spurious warning about missing signatures when + qtype is SIG. [RT #34600] + 3630. [bug] Ensure correct ID computation for MD5 keys. [RT #33033] 3629. [func] Allow the printing of cryptographic fields in DNSSEC diff --git a/bin/named/query.c b/bin/named/query.c index a592967f83b..27c2a3a1d6c 100644 --- a/bin/named/query.c +++ b/bin/named/query.c @@ -7597,7 +7597,8 @@ query_find(ns_client_t *client, dns_fetchevent_t *event, dns_rdatatype_t qtype) goto addauth; } - if (dns_db_issecure(db)) { + if (qtype == dns_rdatatype_rrsig && + dns_db_issecure(db)) { char namebuf[DNS_NAME_FORMATSIZE]; dns_name_format(client->query.qname, namebuf,