Set the ruid to the euid at startup as a workaround for a bug in pam_ssh.

MFC after:	3 days
This commit is contained in:
Dag-Erling Smørgrav 2003-02-07 15:48:27 +00:00
parent 5d45af4c1e
commit 1e731869b2
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=110506

View File

@ -955,6 +955,7 @@ main(int ac, char **av)
/* drop */
setegid(getgid());
setgid(getgid());
setuid(geteuid());
SSLeay_add_all_algorithms();