diff options
author | Kevin Coffman <kwc@citi.umich.edu> | 2007-04-18 19:01:59 -0400 |
---|---|---|
committer | Neil Brown <neilb@suse.de> | 2007-04-20 14:39:01 +1000 |
commit | 77458652703ab94da18e40728607e323dd2b65b1 (patch) | |
tree | 6fb8571ea1017969b3f1b4cb9ea597973967b5d3 | |
parent | 7c96fc46bb3aec5e9b8ecc4b637e66dc33db3a90 (diff) | |
download | nfs-utils-77458652703ab94da18e40728607e323dd2b65b1.tar.gz nfs-utils-77458652703ab94da18e40728607e323dd2b65b1.tar.xz nfs-utils-77458652703ab94da18e40728607e323dd2b65b1.zip |
Tell Heimdal gss code the correct credential to use
Always use the gss_krb5_ccache_name() function to tell Heimdal
which credentials to use.
-rw-r--r-- | utils/gssd/krb5_util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/utils/gssd/krb5_util.h b/utils/gssd/krb5_util.h index 6041048..9cac202 100644 --- a/utils/gssd/krb5_util.h +++ b/utils/gssd/krb5_util.h @@ -42,6 +42,8 @@ int limit_krb5_enctypes(struct rpc_gss_sec *sec, uid_t uid); #define k5_free_unparsed_name(ctx, name) free(name) #define k5_free_default_realm(ctx, realm) free(realm) #define k5_free_kt_entry(ctx, kte) krb5_kt_free_entry((ctx),(kte)) +#undef USE_GSS_KRB5_CCACHE_NAME +#define USE_GSS_KRB5_CCACHE_NAME 1 #endif #endif /* KRB5_UTIL_H */ |