diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2002-05-29 15:04:29 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2002-05-29 15:04:29 +0000 |
commit | a8d7ae61e7b832d354731b1d024e4ff1ed22fca0 (patch) | |
tree | 177816378230c384a5d6b375fc5e5b42478e06c2 /winsup/cygwin/cygheap.h | |
parent | 9854c44c43a179a550c2fb4d23a7f97332628ed3 (diff) | |
download | cygnal-a8d7ae61e7b832d354731b1d024e4ff1ed22fca0.tar.gz cygnal-a8d7ae61e7b832d354731b1d024e4ff1ed22fca0.tar.bz2 cygnal-a8d7ae61e7b832d354731b1d024e4ff1ed22fca0.zip |
Change internal uid datatype from __uid16_t to __uid32_t
throughout.
* cygwin.din: Export new symbols getpwuid32, getpwuid_r32, getuid32,
geteuid32, setuid32, seteuid32.
* passwd.cc (getpwuid32): New function.
(getpwuid_r32): Ditto.
* syscalls.cc (seteuid32): Ditto.
(setuid32): Ditto.
* uinfo.cc (getuid32): Ditto.
(geteuid32): Ditto.
* winsup.h (uid16touid32): New macro, correclt casting from __uid16_t
to __uid32_t.
(gid16togid32): Ditto fir gids.
(getuid32): Declare.
(geteuid32): Ditto.
(getpwuid32): Ditto.
* include/sys/cygwin.h (struct external_pinfo): Add members uid32 and
gid32.
Diffstat (limited to 'winsup/cygwin/cygheap.h')
-rw-r--r-- | winsup/cygwin/cygheap.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/cygheap.h b/winsup/cygwin/cygheap.h index aa4e525ab..f4ef14459 100644 --- a/winsup/cygwin/cygheap.h +++ b/winsup/cygwin/cygheap.h @@ -96,9 +96,9 @@ class cygheap_user PSID psid; /* buffer for user's SID */ PSID orig_psid; /* Remains intact even after impersonation */ public: - __uid16_t orig_uid; /* Remains intact even after impersonation */ + __uid32_t orig_uid; /* Remains intact even after impersonation */ __gid32_t orig_gid; /* Ditto */ - __uid16_t real_uid; /* Remains intact on seteuid, replaced by setuid */ + __uid32_t real_uid; /* Remains intact on seteuid, replaced by setuid */ __gid32_t real_gid; /* Ditto */ /* token is needed if set(e)uid should be called. It can be set by a call |