]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
1188. [bug] Dynamic updates of a signed zone would fail if
authorBrian Wellington <source@isc.org>
Tue, 22 Jan 2002 13:04:45 +0000 (13:04 +0000)
committerBrian Wellington <source@isc.org>
Tue, 22 Jan 2002 13:04:45 +0000 (13:04 +0000)
                        some of the zone private keys were unavailable.

CHANGES
lib/dns/dnssec.c

diff --git a/CHANGES b/CHANGES
index 213875a89614b43aa8ea4c28b216f042a397343b..a89ea5f16b21ed6d0ffd00529f39217e950a7579 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,6 @@
+1188.  [bug]           Dynamic updates of a signed zone would fail if
+                       some of the zone private keys were unavailable.
+
 1187.  [bug]           named was incorrectly returning DNSSEC records
                        in negative responses when the DO bit was not set.
 
index 5b436265fba87d84dccb8248a645eede59c641ff..0da3c69f85727d21024741f12fd4e39ee0c40f4c 100644 (file)
@@ -16,7 +16,7 @@
  */
 
 /*
- * $Id: dnssec.c,v 1.71 2002/01/21 11:00:17 bwelling Exp $
+ * $Id: dnssec.c,v 1.72 2002/01/22 13:04:45 bwelling Exp $
  */
 
 
@@ -511,7 +511,7 @@ dns_dnssec_findzonekeys2(dns_db_t *db, dns_dbversion_t *ver,
                                          DST_TYPE_PUBLIC|DST_TYPE_PRIVATE,
                                          directory,
                                          mctx, &keys[count]);
-               if (result == DST_R_INVALIDPRIVATEKEY)
+               if (result == ISC_R_FILENOTFOUND)
                        goto next;
                if (result != ISC_R_SUCCESS)
                        goto failure;