* security.cc (get_group_sidlist): Fix formatting.

This commit is contained in:
Corinna Vinschen 2002-07-15 09:06:44 +00:00
parent 56a42791a3
commit 315fb3afb0
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2002-07-15 Corinna Vinschen <corinna@vinschen.de>
* security.cc (get_group_sidlist): Fix formatting.
2002-07-14 Christopher Faylor <cgf@redhat.com>
* dcrt0.cc (initial_env): Force path and CYGWIN_DEBUG contents to lower

View File

@ -535,10 +535,11 @@ get_group_sidlist (cygsidlist &grp_list,
/* special_pgrp true if pgrpsid is not null and not in normal groups */
if (!pgrpsid)
{
* special_pgrp = FALSE;
*special_pgrp = FALSE;
get_user_primary_group (wserver, user, usersid, pgrpsid);
}
else * special_pgrp = TRUE;
else
*special_pgrp = TRUE;
if (pw->pw_name && get_supplementary_group_sidlist (pw->pw_name, sup_list))
{
for (int i = 0; i < sup_list.count; ++i)
@ -547,7 +548,8 @@ get_group_sidlist (cygsidlist &grp_list,
}
if (!grp_list.contains (pgrpsid))
grp_list += pgrpsid;
else * special_pgrp = FALSE;
else
*special_pgrp = FALSE;
return TRUE;
}