4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-06 22:40:36 +08:00

whitespace cleanup

This commit is contained in:
Christopher Faylor 2002-02-16 17:47:48 +00:00
parent cf75300efa
commit 9490dffa7b

View File

@ -239,7 +239,7 @@ get_null_sd ()
PSECURITY_ATTRIBUTES __stdcall PSECURITY_ATTRIBUTES __stdcall
sec_user (PVOID sa_buf, PSID sid2, BOOL inherit) sec_user (PVOID sa_buf, PSID sid2, BOOL inherit)
{ {
if (! sa_buf) if (!sa_buf)
return inherit ? &sec_none_nih : &sec_none; return inherit ? &sec_none_nih : &sec_none;
PSECURITY_ATTRIBUTES psa = (PSECURITY_ATTRIBUTES) sa_buf; PSECURITY_ATTRIBUTES psa = (PSECURITY_ATTRIBUTES) sa_buf;
@ -251,7 +251,7 @@ sec_user (PVOID sa_buf, PSID sid2, BOOL inherit)
if (cygheap->user.sid ()) if (cygheap->user.sid ())
sid = cygheap->user.sid (); sid = cygheap->user.sid ();
else if (! lookup_name (getlogin (), cygheap->user.logsrv (), sid)) else if (!lookup_name (getlogin (), cygheap->user.logsrv (), sid))
return inherit ? &sec_none_nih : &sec_none; return inherit ? &sec_none_nih : &sec_none;
size_t acl_len = sizeof (ACL) size_t acl_len = sizeof (ACL)
@ -264,37 +264,36 @@ sec_user (PVOID sa_buf, PSID sid2, BOOL inherit)
acl_len += sizeof (ACCESS_ALLOWED_ACE) - sizeof (DWORD) acl_len += sizeof (ACCESS_ALLOWED_ACE) - sizeof (DWORD)
+ GetLengthSid (sid2); + GetLengthSid (sid2);
if (! InitializeAcl (acl, acl_len, ACL_REVISION)) if (!InitializeAcl (acl, acl_len, ACL_REVISION))
debug_printf ("InitializeAcl %E"); debug_printf ("InitializeAcl %E");
if (! AddAccessAllowedAce (acl, ACL_REVISION, if (!AddAccessAllowedAce (acl, ACL_REVISION,
SPECIFIC_RIGHTS_ALL | STANDARD_RIGHTS_ALL, SPECIFIC_RIGHTS_ALL | STANDARD_RIGHTS_ALL,
sid)) sid))
debug_printf ("AddAccessAllowedAce(%s) %E", getlogin ()); debug_printf ("AddAccessAllowedAce(%s) %E", getlogin ());
if (! AddAccessAllowedAce (acl, ACL_REVISION, if (!AddAccessAllowedAce (acl, ACL_REVISION,
SPECIFIC_RIGHTS_ALL | STANDARD_RIGHTS_ALL, SPECIFIC_RIGHTS_ALL | STANDARD_RIGHTS_ALL,
well_known_admins_sid)) well_known_admins_sid))
debug_printf ("AddAccessAllowedAce(admin) %E"); debug_printf ("AddAccessAllowedAce(admin) %E");
if (! AddAccessAllowedAce (acl, ACL_REVISION, if (!AddAccessAllowedAce (acl, ACL_REVISION,
SPECIFIC_RIGHTS_ALL | STANDARD_RIGHTS_ALL, SPECIFIC_RIGHTS_ALL | STANDARD_RIGHTS_ALL,
well_known_system_sid)) well_known_system_sid))
debug_printf ("AddAccessAllowedAce(system) %E"); debug_printf ("AddAccessAllowedAce(system) %E");
if (! AddAccessAllowedAce (acl, ACL_REVISION, if (!AddAccessAllowedAce (acl, ACL_REVISION,
SPECIFIC_RIGHTS_ALL | STANDARD_RIGHTS_ALL, SPECIFIC_RIGHTS_ALL | STANDARD_RIGHTS_ALL,
well_known_creator_owner_sid)) well_known_creator_owner_sid))
debug_printf ("AddAccessAllowedAce(creator_owner) %E"); debug_printf ("AddAccessAllowedAce(creator_owner) %E");
if (sid2) if (sid2)
if (! AddAccessAllowedAce (acl, ACL_REVISION, if (!AddAccessAllowedAce (acl, ACL_REVISION,
SPECIFIC_RIGHTS_ALL | STANDARD_RIGHTS_ALL, SPECIFIC_RIGHTS_ALL | STANDARD_RIGHTS_ALL,
sid2)) sid2))
debug_printf ("AddAccessAllowedAce(sid2) %E"); debug_printf ("AddAccessAllowedAce(sid2) %E");
if (! InitializeSecurityDescriptor (psd, if (!InitializeSecurityDescriptor (psd, SECURITY_DESCRIPTOR_REVISION))
SECURITY_DESCRIPTOR_REVISION))
debug_printf ("InitializeSecurityDescriptor %E"); debug_printf ("InitializeSecurityDescriptor %E");
/* /*
@ -303,11 +302,11 @@ sec_user (PVOID sa_buf, PSID sid2, BOOL inherit)
* what it should do also if the owner isn't set. * what it should do also if the owner isn't set.
*/ */
#if 0 #if 0
if (! SetSecurityDescriptorOwner (psd, sid, FALSE)) if (!SetSecurityDescriptorOwner (psd, sid, FALSE))
debug_printf ("SetSecurityDescriptorOwner %E"); debug_printf ("SetSecurityDescriptorOwner %E");
#endif #endif
if (! SetSecurityDescriptorDacl (psd, TRUE, acl, FALSE)) if (!SetSecurityDescriptorDacl (psd, TRUE, acl, FALSE))
debug_printf ("SetSecurityDescriptorDacl %E"); debug_printf ("SetSecurityDescriptorDacl %E");
psa->nLength = sizeof (SECURITY_ATTRIBUTES); psa->nLength = sizeof (SECURITY_ATTRIBUTES);