mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 15:36:04 +00:00
[ADVAPI32]
Formatting, no code changes. svn path=/trunk/; revision=56451
This commit is contained in:
parent
534c5372c2
commit
a450c4e88d
1 changed files with 18 additions and 18 deletions
|
@ -226,26 +226,26 @@ MakeAbsoluteSD(PSECURITY_DESCRIPTOR pSelfRelativeSecurityDescriptor,
|
||||||
PSID pPrimaryGroup,
|
PSID pPrimaryGroup,
|
||||||
LPDWORD lpdwPrimaryGroupSize)
|
LPDWORD lpdwPrimaryGroupSize)
|
||||||
{
|
{
|
||||||
NTSTATUS Status;
|
NTSTATUS Status;
|
||||||
|
|
||||||
Status = RtlSelfRelativeToAbsoluteSD (pSelfRelativeSecurityDescriptor,
|
Status = RtlSelfRelativeToAbsoluteSD(pSelfRelativeSecurityDescriptor,
|
||||||
pAbsoluteSecurityDescriptor,
|
pAbsoluteSecurityDescriptor,
|
||||||
lpdwAbsoluteSecurityDescriptorSize,
|
lpdwAbsoluteSecurityDescriptorSize,
|
||||||
pDacl,
|
pDacl,
|
||||||
lpdwDaclSize,
|
lpdwDaclSize,
|
||||||
pSacl,
|
pSacl,
|
||||||
lpdwSaclSize,
|
lpdwSaclSize,
|
||||||
pOwner,
|
pOwner,
|
||||||
lpdwOwnerSize,
|
lpdwOwnerSize,
|
||||||
pPrimaryGroup,
|
pPrimaryGroup,
|
||||||
lpdwPrimaryGroupSize);
|
lpdwPrimaryGroupSize);
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
SetLastError (RtlNtStatusToDosError (Status));
|
SetLastError(RtlNtStatusToDosError(Status));
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue