[entropy.c.] Portability fix for SCO Unix 3.2v4.x (SCO OSR 3.0).

entropy.c needs seteuid(getuid()) for the setuid(original_uid) to succeed.
Patch by gert@greenie.muc.de. This fixes one part of Bug 208
This commit is contained in:
Tim Rice 2002-04-21 11:26:10 -07:00
parent a370f4dcc6
commit f02dccc0dc
2 changed files with 11 additions and 5 deletions

View File

@ -1,3 +1,8 @@
20020421
- (tim) [entropy.c.] Portability fix for SCO Unix 3.2v4.x (SCO OSR 3.0).
entropy.c needs seteuid(getuid()) for the setuid(original_uid) to succeed.
Patch by gert@greenie.muc.de. This fixes one part of Bug 208
20020418 20020418
- (djm) Avoid SIGCHLD breakage when run from rsync. Fix from - (djm) Avoid SIGCHLD breakage when run from rsync. Fix from
Sturle Sunde <sturle.sunde@usit.uio.no> Sturle Sunde <sturle.sunde@usit.uio.no>
@ -8258,4 +8263,4 @@
- Wrote replacements for strlcpy and mkdtemp - Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1 - Released 1.0pre1
$Id: ChangeLog,v 1.2060 2002/04/18 12:53:22 djm Exp $ $Id: ChangeLog,v 1.2061 2002/04/21 18:26:10 tim Exp $

View File

@ -45,7 +45,7 @@
* XXX: we should tell the child how many bytes we need. * XXX: we should tell the child how many bytes we need.
*/ */
RCSID("$Id: entropy.c,v 1.42 2002/04/18 12:53:27 djm Exp $"); RCSID("$Id: entropy.c,v 1.43 2002/04/21 18:26:10 tim Exp $");
#ifndef OPENSSL_PRNG_ONLY #ifndef OPENSSL_PRNG_ONLY
#define RANDOM_SEED_SIZE 48 #define RANDOM_SEED_SIZE 48
@ -87,9 +87,10 @@ seed_rng(void)
close(devnull); close(devnull);
if (original_uid != original_euid && if (original_uid != original_euid &&
setuid(original_uid) == -1) { ( seteuid(getuid()) == -1 ||
fprintf(stderr, "(rand child) setuid: %s\n", setuid(original_uid) == -1) ) {
strerror(errno)); fprintf(stderr, "(rand child) setuid(%d): %s\n",
original_uid, strerror(errno));
_exit(1); _exit(1);
} }