diff options
author | Günther Deschner <gd@samba.org> | 2006-03-10 13:36:39 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:15:13 -0500 |
commit | 14e904fe868eb61e4ce39db14d156f384d086743 (patch) | |
tree | f8adc77b63e8094befcf1ddb07833894dd350114 /source3/nsswitch/winbindd_pam.c | |
parent | a2d489c187792cb18685830a8c80dd5bfed6163e (diff) | |
download | samba-14e904fe868eb61e4ce39db14d156f384d086743.tar.gz samba-14e904fe868eb61e4ce39db14d156f384d086743.tar.bz2 samba-14e904fe868eb61e4ce39db14d156f384d086743.zip |
r14148: Removing the not very well tested krb5 ticket refresh handling activated
over --with-kcm. No time to look after it for the moment.
Guenther
(This used to be commit 7ec2b31a8790db1466ffafeab533c11ab7ea801a)
Diffstat (limited to 'source3/nsswitch/winbindd_pam.c')
-rw-r--r-- | source3/nsswitch/winbindd_pam.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/source3/nsswitch/winbindd_pam.c b/source3/nsswitch/winbindd_pam.c index f72c442e8b..754abad9e2 100644 --- a/source3/nsswitch/winbindd_pam.c +++ b/source3/nsswitch/winbindd_pam.c @@ -313,7 +313,7 @@ static const char *generate_krb5_ccache(TALLOC_CTX *mem_ctx, uid_t uid, BOOL *internal_ccache) { - /* accept KCM, FILE and WRFILE as krb5_cc_type from the client and then + /* accept FILE and WRFILE as krb5_cc_type from the client and then * build the full ccname string based on the user's uid here - * Guenther*/ @@ -333,10 +333,6 @@ static const char *generate_krb5_ccache(TALLOC_CTX *mem_ctx, gen_cc = talloc_asprintf(mem_ctx, "FILE:/tmp/krb5cc_%d", uid); } else if (strequal(type, "WRFILE")) { gen_cc = talloc_asprintf(mem_ctx, "WRFILE:/tmp/krb5cc_%d", uid); -#ifdef WITH_KCM - } else if (strequal(type, "KCM")) { - gen_cc = talloc_asprintf(mem_ctx, "KCM:%d", uid); -#endif } else { DEBUG(10,("we don't allow to set a %s type ccache\n", type)); goto memory_ccache; @@ -383,9 +379,6 @@ static void setup_return_cc_name(struct winbindd_cli_state *state, const char *c } if (!strequal(type, "FILE") && -#ifdef WITH_KCM - !strequal(type, "KCM") && -#endif !strequal(type, "WRFILE")) { DEBUG(10,("won't return krbccname for a %s type ccache\n", type)); |