2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-02 07:35:26 +00:00

2263. [bug] "named-checkconf -z" failed to set default value

for "check-integrity".  [RT #17306]
This commit is contained in:
Mark Andrews
2007-11-26 02:12:45 +00:00
parent 802760773c
commit 1f2635d3f7
2 changed files with 6 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
2263. [bug] "named-checkconf -z" failed to set default value
for "check-integrity". [RT #17306]
2262. [bug] Error status from all but the last view could be 2262. [bug] Error status from all but the last view could be
lost. [RT #17292] lost. [RT #17292]

View File

@@ -15,7 +15,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: named-checkconf.c,v 1.45 2007/06/18 23:47:17 tbox Exp $ */ /* $Id: named-checkconf.c,v 1.46 2007/11/26 02:12:45 marka Exp $ */
/*! \file */ /*! \file */
@@ -226,7 +226,8 @@ configure_zone(const char *vclass, const char *view,
zone_options |= DNS_ZONEOPT_CHECKINTEGRITY; zone_options |= DNS_ZONEOPT_CHECKINTEGRITY;
else else
zone_options &= ~DNS_ZONEOPT_CHECKINTEGRITY; zone_options &= ~DNS_ZONEOPT_CHECKINTEGRITY;
} } else
zone_options |= DNS_ZONEOPT_CHECKINTEGRITY;
obj = NULL; obj = NULL;
if (get_maps(maps, "check-mx-cname", &obj)) { if (get_maps(maps, "check-mx-cname", &obj)) {