2002-12-14 Corinna Vinschen <corinna@vinschen.de>

* dcrt0.cc (dll_crt0_1): Call well known SID initializer function.
	* security.h (cygsid::init): Declare new static method.
	* sec_helper.cc (cygsid::init): New method for initializing well
	known SIDs.

2002-12-14  Pierre Humblet  <pierre.humblet@ieee.org>

	* security.h: Declare well_known_creator_group_sid.
	* sec_helper.cc: Define and initialize well_known_creator_group_sid.
This commit is contained in:
Corinna Vinschen
2002-12-14 17:23:42 +00:00
parent b60e545bb6
commit 85ecb9be00
4 changed files with 48 additions and 12 deletions

View File

@ -40,6 +40,7 @@ class cygsid {
}
public:
static void init();
inline operator const PSID () { return psid; }
inline const PSID operator= (cygsid &nsid)
@ -184,6 +185,7 @@ extern cygsid well_known_null_sid;
extern cygsid well_known_world_sid;
extern cygsid well_known_local_sid;
extern cygsid well_known_creator_owner_sid;
extern cygsid well_known_creator_group_sid;
extern cygsid well_known_dialup_sid;
extern cygsid well_known_network_sid;
extern cygsid well_known_batch_sid;