]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
another post-commit bugfix for change 3114: need to take rndc freeze into
authorEvan Hunt <each@isc.org>
Thu, 19 May 2011 04:44:58 +0000 (04:44 +0000)
committerEvan Hunt <each@isc.org>
Thu, 19 May 2011 04:44:58 +0000 (04:44 +0000)
account in determining whether zone is dynamic

lib/dns/zone.c

index 3eff261d00ab892441b1e892e3bb0613938d9e47..8e7195fd745feddc971b0d0797f963a3a8b1cabd 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: zone.c,v 1.607 2011/05/19 04:33:17 each Exp $ */
+/* $Id: zone.c,v 1.608 2011/05/19 04:44:58 each Exp $ */
 
 /*! \file */
 
@@ -3625,7 +3625,7 @@ zone_postload(dns_zone_t *zone, dns_db_t *db, isc_time_t loadtime,
                }
 
                if (zone->type == dns_zone_master &&
-                   dns_zone_isdynamic(zone, ISC_TRUE) &&
+                   dns_zone_isdynamic(zone, ISC_FALSE) &&
                    dns_db_issecure(db)) {
                        dns_name_t *name;
                        dns_fixedname_t fixed;