mirror of
https://github.com/isc-projects/bind9.git
synced 2026-02-26 11:32:01 -05:00
2263. [bug] "named-checkconf -z" failed to set default value
for "check-integrity". [RT #17306]
This commit is contained in:
parent
520ccb71a6
commit
fa723b7c0f
2 changed files with 6 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -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
|
||||
lost. [RT #17292]
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: named-checkconf.c,v 1.28.18.14 2006/02/28 03:10:47 marka Exp $ */
|
||||
/* $Id: named-checkconf.c,v 1.28.18.15 2007/11/26 02:26:17 marka Exp $ */
|
||||
|
||||
/*! \file */
|
||||
|
||||
|
|
@ -224,7 +224,8 @@ configure_zone(const char *vclass, const char *view,
|
|||
zone_options |= DNS_ZONEOPT_CHECKINTEGRITY;
|
||||
else
|
||||
zone_options &= ~DNS_ZONEOPT_CHECKINTEGRITY;
|
||||
}
|
||||
} else
|
||||
zone_options |= DNS_ZONEOPT_CHECKINTEGRITY;
|
||||
|
||||
obj = NULL;
|
||||
if (get_maps(maps, "check-mx-cname", &obj)) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue