krb5_get_init_creds() for the second time (with use_master=1),
also accept KRB5_REALM_UNKNOWN as a soft error, and use the result
from the first call to krb5_get_init_creds(). This can happen
when no master KDC is configured.
ticket: 2974
tags: pullup
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@17132
dc483132-0cff-0310-8789-
dd5450dbe970
+2005-03-22 Tom Yu <tlyu@mit.edu>
+
+ * gic_keytab.c (krb5_get_init_creds_keytab): When calling
+ krb5_get_init_creds() for the second time (with use_master=1),
+ also accept KRB5_REALM_UNKNOWN as a soft error, and use the result
+ from the first call to krb5_get_init_creds(). This can happen
+ when no master KDC is configured.
+
2005-03-14 Jeffrey Altman <jaltman@mit.edu>
* Makefile.in: fix maintainer mode since it is not supported on
/* if the master is unreachable, return the error from the
slave we were able to contact */
- if ((ret2 == KRB5_KDC_UNREACH) || (ret2 == KRB5_REALM_CANT_RESOLVE))
+ if ((ret2 == KRB5_KDC_UNREACH) ||
+ (ret2 == KRB5_REALM_CANT_RESOLVE) ||
+ (ret2 == KRB5_REALM_UNKNOWN))
goto cleanup;
ret = ret2;