4755. [cleanup] Silence unnecessary log message when NZF file doesn't
exist. [RT #46186]
+4755. [cleanup] Silence unnecessary log message when NZF file doesn't
+ exist. [RT #46186]
+
4754. [bug] dns_zone_setview needs a two stage commit to properly
handle errors. [RT #45841]
count_newzones(dns_view_t *view, ns_cfgctx_t *nzcfg, int *num_zonesp) {
isc_result_t result;
+ if (!isc_file_exists(view->new_zone_file)) {
+ *num_zonesp = 0;
+ return (ISC_R_SUCCESS);
+ }
+
/*
* In the case of NZF files, we also parse the configuration in
* the file at this stage.
int i = 0;
isc_uint64_t mapsize = 0ULL;
- REQUIRE (config != NULL);
+ REQUIRE(config != NULL);
if (vconfig != NULL)
voptions = cfg_tuple_get(vconfig, "options");