mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-24 02:02:10 +08:00
- (bal) Corrected SCO luid patch by svaughan <svaughan@asterion.com>
This commit is contained in:
parent
ff793a27b8
commit
e1bd29bc9e
@ -1,3 +1,6 @@
|
||||
20010222
|
||||
- (bal) Corrected SCO luid patch by svaughan <svaughan@asterion.com>
|
||||
|
||||
20010221
|
||||
- (bal) Removed -L/usr/ucblib -R/usr/ucblib for Solaris platform.
|
||||
- (bal) Fixed OpenSSL rework to use $saved_*. Patch by Tim Rice
|
||||
@ -4090,4 +4093,4 @@
|
||||
- Wrote replacements for strlcpy and mkdtemp
|
||||
- Released 1.0pre1
|
||||
|
||||
$Id: ChangeLog,v 1.809 2001/02/21 16:36:51 stevesk Exp $
|
||||
$Id: ChangeLog,v 1.810 2001/02/21 20:00:28 mouring Exp $
|
||||
|
12
session.c
12
session.c
@ -1080,6 +1080,12 @@ do_child(const char *command, struct passwd * pw, const char *term,
|
||||
}
|
||||
#endif
|
||||
# else /* HAVE_LOGIN_CAP */
|
||||
#if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
|
||||
/* Sets login uid for accounting */
|
||||
if (getluid() == -1 && setluid(pw->pw_uid) == -1)
|
||||
error("setluid: %s", strerror(errno));
|
||||
#endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
|
||||
|
||||
if (setlogin(pw->pw_name) < 0)
|
||||
error("setlogin failed: %s", strerror(errno));
|
||||
if (setgid(pw->pw_gid) < 0) {
|
||||
@ -1131,12 +1137,6 @@ do_child(const char *command, struct passwd * pw, const char *term,
|
||||
}
|
||||
#endif /* HAVE_OSF_SIA */
|
||||
|
||||
#if defined(HAVE_GETLUID) && defined(HAVE_SETLUID)
|
||||
/* Sets login uid for accounting */
|
||||
if (getluid() == -1 && setluid(pw->pw_uid) == -1)
|
||||
error("setluid: %s", strerror(errno));
|
||||
#endif /* defined(HAVE_GETLUID) && defined(HAVE_SETLUID) */
|
||||
|
||||
#ifdef HAVE_CYGWIN
|
||||
if (is_winnt)
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user