mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-31 01:35:11 +02:00
- (dtucker) [auth-krb5.c] Bug #922: Pass KRB5CCNAME to PAM. From deengert
at anl.gov, ok djm@
This commit is contained in:
parent
a0c2b394b4
commit
5614d8f8c4
@ -13,6 +13,8 @@
|
|||||||
- (dtucker) [session.c] Bug #927: make .hushlogin silent again. ok djm@
|
- (dtucker) [session.c] Bug #927: make .hushlogin silent again. ok djm@
|
||||||
- (dtucker) [configure.ac] Bug #321: Add cross-compile support to configure.
|
- (dtucker) [configure.ac] Bug #321: Add cross-compile support to configure.
|
||||||
Parts by chua at ayrnetworks.com, astrand at lysator.liu.se and me. ok djm@
|
Parts by chua at ayrnetworks.com, astrand at lysator.liu.se and me. ok djm@
|
||||||
|
- (dtucker) [auth-krb5.c] Bug #922: Pass KRB5CCNAME to PAM. From deengert
|
||||||
|
at anl.gov, ok djm@
|
||||||
|
|
||||||
20040830
|
20040830
|
||||||
- (dtucker) [session.c openbsd-compat/bsd-cygwin_util.{c,h}] Bug #915: only
|
- (dtucker) [session.c openbsd-compat/bsd-cygwin_util.{c,h}] Bug #915: only
|
||||||
@ -1732,4 +1734,4 @@
|
|||||||
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
|
||||||
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.3546 2004/09/11 13:26:37 dtucker Exp $
|
$Id: ChangeLog,v 1.3547 2004/09/11 13:32:09 dtucker Exp $
|
||||||
|
@ -187,6 +187,11 @@ auth_krb5_password(Authctxt *authctxt, const char *password)
|
|||||||
snprintf(authctxt->krb5_ccname, len, "FILE:%s",
|
snprintf(authctxt->krb5_ccname, len, "FILE:%s",
|
||||||
authctxt->krb5_ticket_file);
|
authctxt->krb5_ticket_file);
|
||||||
|
|
||||||
|
#ifdef USE_PAM
|
||||||
|
if (options.use_pam)
|
||||||
|
do_pam_putenv("KRB5CCNAME", authctxt->krb5_ccname);
|
||||||
|
#endif
|
||||||
|
|
||||||
out:
|
out:
|
||||||
restore_uid();
|
restore_uid();
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user