]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup:
authorAndreas Gustafsson <source@isc.org>
Thu, 7 Sep 2000 19:32:15 +0000 (19:32 +0000)
committerAndreas Gustafsson <source@isc.org>
Thu, 7 Sep 2000 19:32:15 +0000 (19:32 +0000)
 425.   [bug]           Warn about the auth-nxdomain default value change
                        if there is no auth-nxdomain statement in the
                        config file. [RT #287]

CHANGES
lib/dns/config/confctx.c

diff --git a/CHANGES b/CHANGES
index 4a6c17bc48067fabbc69d543187e12d0285d4703..d266e989484fec21ab236595781f9316448af73f 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -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]
index 6b023c757e2475b22656818483b6459bd613c1f5..3d8708a1a0991b3d166ff4cb6ded2315ecaa82d9 100644 (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 "