mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-15 01:00:06 -04:00
3631. [bug] Remove spurious warning about missing signatures when
qtype is SIG. [RT #34600]
(cherry picked from commit 06ace051e7)
This commit is contained in:
parent
0920c92d0d
commit
310bcbf417
2 changed files with 5 additions and 1 deletions
3
CHANGES
3
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]
|
||||
|
||||
3627. [bug] RPZ changes were not effective on slaves. [RT #34450]
|
||||
|
|
|
|||
|
|
@ -7155,7 +7155,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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue