Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2002-12-14 20:23:42 +0300
committerCorinna Vinschen <corinna@vinschen.de>2002-12-14 20:23:42 +0300
commit85ecb9be00c71d3bc2bc66c2c166d7a8245a8c1d (patch)
treee451a0325fdf4966e1733295a67698bb975688fe /winsup/cygwin/dcrt0.cc
parentb60e545bb64f96a4eaad691e623891baed6ffbcf (diff)
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.
Diffstat (limited to 'winsup/cygwin/dcrt0.cc')
-rw-r--r--winsup/cygwin/dcrt0.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/winsup/cygwin/dcrt0.cc b/winsup/cygwin/dcrt0.cc
index d42fbfab9..f12654d26 100644
--- a/winsup/cygwin/dcrt0.cc
+++ b/winsup/cygwin/dcrt0.cc
@@ -681,6 +681,9 @@ dll_crt0_1 ()
/* Allocate cygheap->fdtab */
dtable_init ();
+ /* 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 ();