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:
Mark Andrews 2014-02-24 12:15:37 +11:00
parent 9e452706a5
commit f1fc30125e
2 changed files with 5 additions and 1 deletions

View file

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

View file

@ -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);