From b65c8325a71defb83d841508c7e22273755001fb Mon Sep 17 00:00:00 2001 From: Bob Halley Date: Wed, 12 Apr 2000 02:04:03 +0000 Subject: [PATCH] If the user has specified auth-nxdomain, do not warn about the default being changed. Fix typo. --- lib/dns/config/confctx.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/dns/config/confctx.c b/lib/dns/config/confctx.c index 8afecd14c0..93fe91e993 100644 --- a/lib/dns/config/confctx.c +++ b/lib/dns/config/confctx.c @@ -15,7 +15,7 @@ * SOFTWARE. */ -/* $Id: confctx.c,v 1.47 2000/04/07 17:40:40 brister Exp $ */ +/* $Id: confctx.c,v 1.48 2000/04/12 02:04:03 halley Exp $ */ #include @@ -256,7 +256,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 `auth-nxdomain' option " @@ -274,7 +274,7 @@ dns_c_checkconfig(dns_c_ctx_t *cfg) if (dns_c_ctx_getdialup(cfg, &bval) != ISC_R_NOTFOUND) { isc_log_write(dns_lctx,DNS_LOGCATEGORY_CONFIG, DNS_LOGMODULE_CONFIG, ISC_LOG_WARNING, - "option `dialup' is not yet implemted."); + "option `dialup' is not yet implemented."); }