mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-03 08:05:21 +00:00
706. [bug] Zones with an explicit "allow-update { none; };"
were considered dynamic and therefore not reloaded on SIGNUP or "rndc reload".
This commit is contained in:
4
CHANGES
4
CHANGES
@@ -1,4 +1,8 @@
|
|||||||
|
|
||||||
|
706. [bug] Zones with an explicit "allow-update { none; };"
|
||||||
|
were considered dynamic and therefore not reloaded
|
||||||
|
on SIGNUP or "rndc reload".
|
||||||
|
|
||||||
705. [port] Work out resource limit type for use where rlim_t is
|
705. [port] Work out resource limit type for use where rlim_t is
|
||||||
not available. [RT #695]
|
not available. [RT #695]
|
||||||
|
|
||||||
|
@@ -15,7 +15,7 @@
|
|||||||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* $Id: zone.c,v 1.298 2001/01/18 23:29:29 gson Exp $ */
|
/* $Id: zone.c,v 1.299 2001/01/24 00:00:21 gson Exp $ */
|
||||||
|
|
||||||
#include <config.h>
|
#include <config.h>
|
||||||
|
|
||||||
@@ -866,7 +866,7 @@ zone_isdynamic(dns_zone_t *zone) {
|
|||||||
zone->type == dns_zone_stub ||
|
zone->type == dns_zone_stub ||
|
||||||
zone->ssutable != NULL ||
|
zone->ssutable != NULL ||
|
||||||
(zone->update_acl != NULL &&
|
(zone->update_acl != NULL &&
|
||||||
! (zone->update_acl->length == 0 &&
|
! (zone->update_acl->length == 1 &&
|
||||||
zone->update_acl->elements[0].negative == ISC_TRUE
|
zone->update_acl->elements[0].negative == ISC_TRUE
|
||||||
&&
|
&&
|
||||||
zone->update_acl->elements[0].type ==
|
zone->update_acl->elements[0].type ==
|
||||||
|
Reference in New Issue
Block a user