mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-29 18:09:11 -04:00
pullup:
1188. [bug] Dynamic updates of a signed zone would fail if
some of the zone private keys were unavailable.
This commit is contained in:
parent
622a5774e6
commit
8a4f85e204
2 changed files with 5 additions and 2 deletions
3
CHANGES
3
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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue