* cygheap.cc (cygheap_user::set_saved_sid): Rename from set_orig_sid.

* cygheap.h (class cygheap_user): Rename orig_psid, orig_uid and
	orig_gid to saved_psid, saved_uid and saved_gid respectively.
	Rename methods orig_sid and set_orig_sid to saved_sid and set_saved_sid
	respectively.
	* sec_helper.cc (sec_acl): Accomodate above changes.
	* spawn.cc (spawn_guts): Ditto.
	* uinfo.cc (uinfo_init): Ditto.
This commit is contained in:
Corinna Vinschen
2003-09-16 09:24:52 +00:00
parent c429c346d8
commit 1498189ca8
6 changed files with 31 additions and 19 deletions

View File

@@ -458,13 +458,14 @@ cygheap_user::set_sid (PSID new_sid)
}
BOOL
cygheap_user::set_orig_sid ()
cygheap_user::set_saved_sid ()
{
if (psid)
{
if (!orig_psid) orig_psid = cmalloc (HEAP_STR, MAX_SID_LEN);
if (orig_psid)
return CopySid (MAX_SID_LEN, orig_psid, psid);
if (!saved_psid)
saved_psid = cmalloc (HEAP_STR, MAX_SID_LEN);
if (saved_psid)
return CopySid (MAX_SID_LEN, saved_psid, psid);
}
return FALSE;
}