]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup:
authorMark Andrews <marka@isc.org>
Wed, 23 Jan 2002 03:19:03 +0000 (03:19 +0000)
committerMark Andrews <marka@isc.org>
Wed, 23 Jan 2002 03:19:03 +0000 (03:19 +0000)
1188.   [bug]           Dynamic updates of a signed zone would fail if
                        some of the zone private keys were unavailable.

CHANGES
lib/dns/dnssec.c

diff --git a/CHANGES b/CHANGES
index 5aca51980d10603b3f783e819e8faf71b4f48411..aa4b900666f12c14cca6ef3d4a7e5e9ea771d07e 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -2,6 +2,9 @@
                        could cause the caller to report an out of memory
                        error. [RT #2398]
 
+1188.  [bug]           Dynamic updates of a signed zone would fail if
+                       some of the zone private keys were unavailable.
+
 1186.   [bug]           isc_hex_tobuffer(,,length = 0) failed to unget the
                         EOL token when reading to end of line.
 
index 9daaee193ba728fa2985be0a9adcbd8a9d84ae77..4ead65373b2c7e4f65d61a4ad26ad8184fc84b4f 100644 (file)
@@ -16,7 +16,7 @@
  */
 
 /*
- * $Id: dnssec.c,v 1.69 2001/06/08 22:48:28 bwelling Exp $
+ * $Id: dnssec.c,v 1.69.2.1 2002/01/23 03:19:03 marka Exp $
  */
 
 
@@ -505,7 +505,7 @@ dns_dnssec_findzonekeys(dns_db_t *db, dns_dbversion_t *ver,
                                          DST_TYPE_PUBLIC|DST_TYPE_PRIVATE,
                                          NULL,
                                          mctx, &keys[count]);
-               if (result == DST_R_INVALIDPRIVATEKEY)
+               if (result == ISC_R_FILENOTFOUND)
                        goto next;
                if (result != ISC_R_SUCCESS)
                        goto failure;