diff --git a/CHANGES b/CHANGES index b7a1f57f37..bd06be1234 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,6 @@ + 425. [bug] Warn about the auth-nxdomain default value change + if there is no auth-nxdomain statement in the + config file. [RT #287] 424. [bug] notify_createmessage() could trigger an assertion failure when creating the notify message failed, e.g. due to diff --git a/lib/dns/config/confctx.c b/lib/dns/config/confctx.c index f713a0c6b2..7ab2f37302 100644 --- a/lib/dns/config/confctx.c +++ b/lib/dns/config/confctx.c @@ -15,7 +15,7 @@ * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: confctx.c,v 1.85 2000/08/22 17:36:31 gson Exp $ */ +/* $Id: confctx.c,v 1.86 2000/09/07 19:24:33 halley Exp $ */ #include @@ -367,7 +367,7 @@ dns_c_checkconfig(dns_c_ctx_t *cfg) } - if (dns_c_ctx_getauthnxdomain(cfg, &bval) != ISC_R_NOTFOUND) { + if (dns_c_ctx_getauthnxdomain(cfg, &bval) == ISC_R_NOTFOUND) { isc_log_write(dns_lctx,DNS_LOGCATEGORY_CONFIG, DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING, "the default for the 'auth-nxdomain' option "