diff options
author | tim <tim> | 2005-08-26 20:15:19 +0000 |
---|---|---|
committer | tim <tim> | 2005-08-26 20:15:19 +0000 |
commit | b7bb91a00123191d95c760cc763d5b9973534741 (patch) | |
tree | 70ab3112b5a915912552aa063845edff424119d9 /session.c | |
parent | da1d3f4abfe8e3e43283ed8f5e3471bcd901da22 (diff) | |
download | openssh-b7bb91a00123191d95c760cc763d5b9973534741.tar.gz |
- (tim) [CREDITS LICENCE auth.c configure.ac defines.h includes.h session.c
openbsd-compat/Makefile.in openbsd-compat/openbsd-compat.h
openbsd-compat/xcrypt.c] New files [openssh/openbsd-compat/port-uw.c
openssh/openbsd-compat/port-uw.h] Support long passwords (> 8-char)
on UnixWare 7 from Dhiraj Gulati and Ahsan Rashid. Cleanup and testing
by tim@. Feedback and OK dtucker@
Diffstat (limited to 'session.c')
-rw-r--r-- | session.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1334,6 +1334,11 @@ do_setusercontext(struct passwd *pw) # ifdef _AIX aix_usrinfo(pw); # endif /* _AIX */ +# ifdef HAVE_LIBIAF + if (set_id(pw->pw_name) != 0) { + exit(1); + } +# endif /* Permanently switch to the desired uid. */ permanently_set_uid(pw); #endif |