mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-26 07:15:36 +02:00
- (tim) [session.c] Logout records were not updated on systems with
post auth privsep disabled due to bug 1086 changes. Analysis and patch by vinschen at redhat.com. OK tim@, dtucker@.
This commit is contained in:
parent
ac9b0609e1
commit
83d2f5fedf
@ -1,3 +1,8 @@
|
|||||||
|
20060208
|
||||||
|
- (tim) [session.c] Logout records were not updated on systems with
|
||||||
|
post auth privsep disabled due to bug 1086 changes. Analysis and patch
|
||||||
|
by vinschen at redhat.com. OK tim@, dtucker@.
|
||||||
|
|
||||||
20060206
|
20060206
|
||||||
- (tim) [configure.ac] Remove unnecessary tests for net/if.h and
|
- (tim) [configure.ac] Remove unnecessary tests for net/if.h and
|
||||||
netinet/in_systm.h. OK dtucker@.
|
netinet/in_systm.h. OK dtucker@.
|
||||||
@ -3840,4 +3845,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.4123 2006/02/05 19:27:10 tim Exp $
|
$Id: ChangeLog,v 1.4124 2006/02/07 23:17:44 tim Exp $
|
||||||
|
@ -2176,7 +2176,6 @@ session_exit_message(Session *s, int status)
|
|||||||
|
|
||||||
/* disconnect channel */
|
/* disconnect channel */
|
||||||
debug("session_exit_message: release channel %d", s->chanid);
|
debug("session_exit_message: release channel %d", s->chanid);
|
||||||
s->pid = 0;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Adjust cleanup callback attachment to send close messages when
|
* Adjust cleanup callback attachment to send close messages when
|
||||||
@ -2238,6 +2237,7 @@ session_close_by_pid(pid_t pid, int status)
|
|||||||
session_exit_message(s, status);
|
session_exit_message(s, status);
|
||||||
if (s->ttyfd != -1)
|
if (s->ttyfd != -1)
|
||||||
session_pty_cleanup(s);
|
session_pty_cleanup(s);
|
||||||
|
s->pid = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
x
Reference in New Issue
Block a user