mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-29 13:38:26 +00:00
[master] fix out-of-order synchronization that affected the dnssec test
This commit is contained in:
parent
57c04ec865
commit
a5a60037e5
@ -6049,11 +6049,11 @@ add_keydata_zone(dns_view_t *view, const char *directory, isc_mem_t *mctx) {
|
||||
|
||||
if (pview != NULL) {
|
||||
if (pview->managed_keys != NULL) {
|
||||
dns_zone_synckeyzone(pview->managed_keys);
|
||||
dns_zone_attach(pview->managed_keys,
|
||||
&view->managed_keys);
|
||||
dns_zone_setview(pview->managed_keys, view);
|
||||
dns_view_detach(&pview);
|
||||
dns_zone_synckeyzone(view->managed_keys);
|
||||
return (ISC_R_SUCCESS);
|
||||
}
|
||||
|
||||
|
@ -4220,8 +4220,7 @@ sync_keyzone(dns_zone_t *zone, dns_db_t *db) {
|
||||
dns_name_t *rrname = NULL;
|
||||
isc_uint32_t ttl;
|
||||
|
||||
dns_rriterator_current(&rrit, &rrname, &ttl,
|
||||
&rdataset, NULL);
|
||||
dns_rriterator_current(&rrit, &rrname, &ttl, &rdataset, NULL);
|
||||
if (!dns_rdataset_isassociated(rdataset)) {
|
||||
dns_rriterator_destroy(&rrit);
|
||||
goto failure;
|
||||
|
Loading…
x
Reference in New Issue
Block a user