1188.   [bug]           Dynamic updates of a signed zone would fail if
                        some of the zone private keys were unavailable.
This commit is contained in:
Mark Andrews 2002-01-23 03:19:03 +00:00
parent 622a5774e6
commit 8a4f85e204
2 changed files with 5 additions and 2 deletions

View file

@ -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.

View 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;