425.   [bug]           Warn about the auth-nxdomain default value change
                        if there is no auth-nxdomain statement in the
                        config file. [RT #287]
This commit is contained in:
Andreas Gustafsson
2000-09-07 19:32:15 +00:00
parent 60882aac53
commit 0e1409741d
2 changed files with 6 additions and 2 deletions

View File

@@ -1,6 +1,10 @@
426. [bug] Attempting to generate an oversized RSA key could
cause dnssec-keygen to dump core.
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
corrupt zones with multiple SOA records. [RT #279]

View File

@@ -15,7 +15,7 @@
* SOFTWARE.
*/
/* $Id: confctx.c,v 1.70.2.3 2000/07/26 16:32:50 gson Exp $ */
/* $Id: confctx.c,v 1.70.2.4 2000/09/07 19:32:15 gson Exp $ */
#include <config.h>
@@ -255,7 +255,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 "