mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
b3bf66adcd
patch-ac: call setsid() before setlogin() in the child (when emulating rsh) otherwise the setlogin() will fail when/if the proposed setlogin() changes go in. Otherwise it silently fails and may leave the login name of the user session as "root" (depending on how sshd was started). Without the proposed kernel change, it harmlessly sets the login name of the user's session. patch-ad: patch the #ifdef botch that stopped a ssh login from using and updating the lastlog file. This is because we have struct lastlog defined inside utmp.h rather than a lastlog.h include file like it was expecting.
15 lines
446 B
Plaintext
15 lines
446 B
Plaintext
*** sshd.c.old Sun Oct 1 11:16:22 1995
|
|
--- sshd.c Tue Nov 21 02:03:24 1995
|
|
***************
|
|
*** 1581,1586 ****
|
|
--- 1581,1589 ----
|
|
log_init(av0, debug_flag && !inetd_flag, debug_flag,
|
|
options.quiet_mode, options.log_facility);
|
|
|
|
+ #ifdef HAVE_SETSID
|
|
+ setsid();
|
|
+ #endif
|
|
#ifdef USE_PIPES
|
|
/* Redirect stdin. We close the parent side of the socket pair,
|
|
and make the child side the standard input. */
|