summaryrefslogtreecommitdiff
path: root/session.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2004-04-16 22:47:55 +1000
committerDamien Miller <djm@mindrot.org>2004-04-16 22:47:55 +1000
commit9c870f966a747fc04c69f5203261ee8b936fabd5 (patch)
treec64202484b280a04e5106d208ff20fd0133cb7b1 /session.c
parentc99a19b44539df51837f125f0607dda9f2876094 (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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/session.c b/session.c
index c35d077aa..55db2ffd2 100644
--- a/session.c
+++ b/session.c
@@ -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 /*