* gic_keytab.c (krb5_get_init_creds_keytab): When calling
authorTom Yu <tlyu@mit.edu>
Tue, 22 Mar 2005 22:49:11 +0000 (22:49 +0000)
committerTom Yu <tlyu@mit.edu>
Tue, 22 Mar 2005 22:49:11 +0000 (22:49 +0000)
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

src/lib/krb5/krb/ChangeLog
src/lib/krb5/krb/gic_keytab.c

index f5cbe7b64e4dc990d332792c71685a2b0c31089e..00196d676cc6e9c88a5642f4f19c687d06202258 100644 (file)
@@ -1,3 +1,11 @@
+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 
index a3cd443b1d2df9031ee5938e7abd6679196567ef..ba704e6be8e29f7e1c4ca8ee3007a8a129a7df56 100644 (file)
@@ -127,7 +127,9 @@ krb5_get_init_creds_keytab(krb5_context context, krb5_creds *creds, krb5_princip
       /* 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;