3300. [bug] Named could die if gssapi was enabled in named.conf

but was not compiled in. [RT #28338]
This commit is contained in:
Mark Andrews 2012-03-29 09:52:44 +11:00
parent d7776e1519
commit 46fbcf04a0
2 changed files with 5 additions and 2 deletions

View file

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

View file

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