mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-26 19:41:04 -05:00
Don't return DNS_R_UNCHANGED from load callback
This commit is contained in:
parent
db854ef77b
commit
883efd713c
1 changed files with 2 additions and 0 deletions
|
|
@ -2706,6 +2706,8 @@ add_rdataset_callback(dns_rdatacallbacks_t *callbacks, dns_name_t *name,
|
|||
if (result == DNS_R_SUCCESS &&
|
||||
delegating_type(rbtdb, node, rdataset->type))
|
||||
node->find_callback = 1;
|
||||
else if (result == DNS_R_UNCHANGED)
|
||||
result = DNS_R_SUCCESS;
|
||||
|
||||
return (result);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue