mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 07:19:59 -04:00
3300. [bug] Named could die if gssapi was enabled in named.conf
but was not compiled in. [RT #28338]
This commit is contained in:
parent
d7776e1519
commit
46fbcf04a0
2 changed files with 5 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
3300. [bug] Named could die if gssapi was enabled in named.conf
|
||||
but was not compiled in. [RT #28338]
|
||||
|
||||
3299. [bug] Make SDB handle errors from database drivers better.
|
||||
[RT #28534]
|
||||
|
||||
|
|
|
|||
|
|
@ -485,9 +485,9 @@ process_gsstkey(dns_name_t *name, dns_rdata_tkey_t *tkeyin,
|
|||
tkeyout->error = dns_tsigerror_badkey;
|
||||
tkey_log("process_gsstkey(): dns_tsigerror_badkey"); /* XXXSRA */
|
||||
return (ISC_R_SUCCESS);
|
||||
} else if (result == ISC_R_FAILURE)
|
||||
}
|
||||
if (result != DNS_R_CONTINUE && result != ISC_R_SUCCESS)
|
||||
goto failure;
|
||||
ENSURE(result == DNS_R_CONTINUE || result == ISC_R_SUCCESS);
|
||||
/*
|
||||
* XXXDCL Section 4.1.3: Limit GSS_S_CONTINUE_NEEDED to 10 times.
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue