mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-15 00:00:04 -04:00
more for:
2824. [bug] "rndc sign" was not being run by the correct task.
[RT #20759]
This commit is contained in:
parent
502dc92f58
commit
7ddd859470
1 changed files with 3 additions and 1 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: zone.c,v 1.546 2009/12/30 02:26:30 marka Exp $ */
|
||||
/* $Id: zone.c,v 1.547 2009/12/30 02:32:13 marka Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -13770,6 +13770,7 @@ zone_rekey(dns_zone_t *zone) {
|
|||
dns_db_closeversion(db, &ver, commit);
|
||||
|
||||
if (commit) {
|
||||
LOCK_ZONE(zone);
|
||||
DNS_ZONE_SETFLAG(zone, DNS_ZONEFLG_NOTIFYRESIGN);
|
||||
|
||||
for (key = ISC_LIST_HEAD(rmkeys);
|
||||
|
|
@ -13790,6 +13791,7 @@ zone_rekey(dns_zone_t *zone) {
|
|||
key->first_sign = ISC_FALSE;
|
||||
}
|
||||
}
|
||||
UNLOCK_ZONE(zone);
|
||||
}
|
||||
|
||||
isc_time_settoepoch(&zone->refreshkeytime);
|
||||
|
|
|
|||
Loading…
Reference in a new issue