mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 15:39:59 -04:00
3756. [bug] GSSAPI Kerberos realm checking was broken in
check_config leading to spurious messages being
logged. [RT #35443]
(cherry picked from commit 0072ae822d)
This commit is contained in:
parent
9e452706a5
commit
f1fc30125e
2 changed files with 5 additions and 1 deletions
4
CHANGES
4
CHANGES
|
|
@ -1,3 +1,7 @@
|
|||
3756. [bug] GSSAPI Kerberos realm checking was broken in
|
||||
check_config leading to spurious messages being
|
||||
logged. [RT #35443]
|
||||
|
||||
3754. [cleanup] win32: Installer now places files in the
|
||||
Program Files area rather than system services.
|
||||
[RT #35361]
|
||||
|
|
|
|||
|
|
@ -233,7 +233,7 @@ check_config(const char *gss_name) {
|
|||
krb5_free_context(krb5_ctx);
|
||||
return;
|
||||
}
|
||||
p = strchr(gss_name, '/');
|
||||
p = strchr(gss_name, '@');
|
||||
if (p == NULL) {
|
||||
gss_log(ISC_LOG_ERROR, "badly formatted "
|
||||
"tkey-gssapi-credentials (%s)", gss_name);
|
||||
|
|
|
|||
Loading…
Reference in a new issue