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/client | |
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/client')
-rw-r--r-- | source3/client/smbspool.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/source3/client/smbspool.c b/source3/client/smbspool.c index 92e0bb4b67..245775bf6a 100644 --- a/source3/client/smbspool.c +++ b/source3/client/smbspool.c @@ -300,12 +300,6 @@ static char * get_ticket_cache( uid_t uid ) { char *ticket_file = NULL; - -#ifdef WITH_KCM - snprintf(ticket_file, CC_MAX_FILE_LEN, "KCM:%d", uid ); - goto done; -#else - { SMB_STRUCT_DIR *tcdir; /* directory where ticket caches are stored */ SMB_STRUCT_DIRENT *dirent; /* directory entry */ char *filename = NULL; /* holds file names on the tmp directory */ @@ -349,10 +343,6 @@ char * get_ticket_cache( uid_t uid ) } sys_closedir(tcdir); - } -#endif - -done: if ( ticket_file == NULL ) { |