diff options
author | Damien Miller <djm@mindrot.org> | 2004-04-16 22:47:55 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2004-04-16 22:47:55 +1000 |
commit | 9c870f966a747fc04c69f5203261ee8b936fabd5 (patch) | |
tree | c64202484b280a04e5106d208ff20fd0133cb7b1 /session.c | |
parent | c99a19b44539df51837f125f0607dda9f2876094 (diff) |
- (djm) [auth-krb5.c auth.h session.c] Explicitly refer to Kerberos ccache
file using FILE: method, fixes problems on Mac OSX.
Patch from simon@sxw.org.uk; ok dtucker@
Diffstat (limited to 'session.c')
-rw-r--r-- | session.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1093,9 +1093,9 @@ do_setup_env(Session *s, const char *shell) | |||
1093 | } | 1093 | } |
1094 | #endif | 1094 | #endif |
1095 | #ifdef KRB5 | 1095 | #ifdef KRB5 |
1096 | if (s->authctxt->krb5_ticket_file) | 1096 | if (s->authctxt->krb5_ccname) |
1097 | child_set_env(&env, &envsize, "KRB5CCNAME", | 1097 | child_set_env(&env, &envsize, "KRB5CCNAME", |
1098 | s->authctxt->krb5_ticket_file); | 1098 | s->authctxt->krb5_ccname); |
1099 | #endif | 1099 | #endif |
1100 | #ifdef USE_PAM | 1100 | #ifdef USE_PAM |
1101 | /* | 1101 | /* |