mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 08:50:00 -04:00
Cached NXDOMAIN for type ANY queries should be bound to a rdataset.
This commit is contained in:
parent
1205f38a4c
commit
f6c1a76e91
1 changed files with 1 additions and 1 deletions
|
|
@ -2462,7 +2462,7 @@ cache_find(dns_db_t *db, dns_name_t *name, dns_dbversion_t *version,
|
|||
result = DNS_R_SUCCESS;
|
||||
}
|
||||
|
||||
if (type != dns_rdatatype_any) {
|
||||
if (type != dns_rdatatype_any || result == DNS_R_NCACHENXDOMAIN) {
|
||||
bind_rdataset(search.rbtdb, node, found, search.now,
|
||||
rdataset);
|
||||
if (foundsig != NULL)
|
||||
|
|
|
|||
Loading…
Reference in a new issue