[ADVAPI32]

Formatting, no code changes.

svn path=/trunk/; revision=56451
This commit is contained in:
Eric Kohl 2012-04-29 21:39:32 +00:00
parent 534c5372c2
commit a450c4e88d

View file

@ -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;
} }