mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 13:50:00 -04:00
white space; move pause to before comment.
This commit is contained in:
parent
66b0777516
commit
0b3d4e38ee
1 changed files with 6 additions and 0 deletions
|
|
@ -6814,6 +6814,7 @@ zone_nsec3chain(dns_zone_t *zone) {
|
|||
if (rebuild_nsec) {
|
||||
if (nsec3chain != NULL)
|
||||
dns_dbiterator_pause(nsec3chain->dbiterator);
|
||||
|
||||
result = updatesecure(db, version, &zone->origin,
|
||||
zone->minimum, ISC_TRUE,
|
||||
&nsec_diff);
|
||||
|
|
@ -6825,9 +6826,11 @@ zone_nsec3chain(dns_zone_t *zone) {
|
|||
goto failure;
|
||||
}
|
||||
}
|
||||
|
||||
if (rebuild_nsec3) {
|
||||
if (nsec3chain != NULL)
|
||||
dns_dbiterator_pause(nsec3chain->dbiterator);
|
||||
|
||||
result = dns_nsec3_addnsec3s(db, version,
|
||||
dns_db_origin(db),
|
||||
zone->minimum, ISC_FALSE,
|
||||
|
|
@ -6842,6 +6845,9 @@ zone_nsec3chain(dns_zone_t *zone) {
|
|||
}
|
||||
}
|
||||
|
||||
if (nsec3chain != NULL)
|
||||
dns_dbiterator_pause(nsec3chain->dbiterator);
|
||||
|
||||
/*
|
||||
* Add / update signatures for the NSEC3 records.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue