diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-01-25 10:36:46 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-01-25 10:36:46 +0000 |
commit | 4f7e12dd266a28d72693b090e3ae8d2a49926005 (patch) | |
tree | a50adc0fd82799a839ec0273b429da28d6a249f7 /winsup/cygwin/dcrt0.cc | |
parent | 45dbfc2611b05754d8ca5162854d5930f03ceb9b (diff) | |
download | newlib-4f7e12dd266a28d72693b090e3ae8d2a49926005.zip newlib-4f7e12dd266a28d72693b090e3ae8d2a49926005.tar.gz newlib-4f7e12dd266a28d72693b090e3ae8d2a49926005.tar.bz2 |
* syscalls.cc (seteuid32): On Win95 get the pw entry. If it exists
update the euid and call cygheap->user.set_name. Remove special
handling of ILLEGAL_UID.
(setgid32): Add a debug_printf. On Win95, always set the egid.
Remove special handling of ILLEGAL_GID. Do not compare gid and gr_gid.
* child_info.h (class cygheap_exec_info): Remove uid.
* spawn.cc (spawn_guts): Do not set ciresrv.moreinfo->uid.
* dcrto.cc (dll_crt0_1): Always call uinfo_init.
* uinfo.cc (uinfo_init): Reorganize and close handle if needed.
(cygheap_user::ontherange): Do not call internal_getpwnam if pw is NULL.
Diffstat (limited to 'winsup/cygwin/dcrt0.cc')
-rw-r--r-- | winsup/cygwin/dcrt0.cc | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/winsup/cygwin/dcrt0.cc b/winsup/cygwin/dcrt0.cc index 004837d..1c30cea 100644 --- a/winsup/cygwin/dcrt0.cc +++ b/winsup/cygwin/dcrt0.cc @@ -684,9 +684,8 @@ dll_crt0_1 () /* Init global well known SID objects */ cygsid::init (); - /* Initialize uid, gid if necessary. */ - if (child_proc_info == NULL || spawn_info->moreinfo->uid == ILLEGAL_UID) - uinfo_init (); + /* Initialize user info. */ + uinfo_init (); /* Initialize signal/subprocess handling. */ sigproc_init (); |