* Sync up to trunk head (r64921).
[reactos.git] / dll / win32 / advapi32 / sec / sec.c
index 780942d..d62edc3 100644 (file)
@@ -1,5 +1,4 @@
-/* $Id$
- *
+/*
  * COPYRIGHT:       See COPYING in the top level directory
  * PROJECT:         ReactOS system libraries
  * FILE:            lib/advapi32/sec/sec.c
@@ -226,26 +225,26 @@ MakeAbsoluteSD(PSECURITY_DESCRIPTOR pSelfRelativeSecurityDescriptor,
                PSID pPrimaryGroup,
                LPDWORD lpdwPrimaryGroupSize)
 {
-       NTSTATUS Status;
-
-       Status = RtlSelfRelativeToAbsoluteSD (pSelfRelativeSecurityDescriptor,
-                                             pAbsoluteSecurityDescriptor,
-                                             lpdwAbsoluteSecurityDescriptorSize,
-                                             pDacl,
-                                             lpdwDaclSize,
-                                             pSacl,
-                                             lpdwSaclSize,
-                                             pOwner,
-                                             lpdwOwnerSize,
-                                             pPrimaryGroup,
-                                             lpdwPrimaryGroupSize);
-       if (!NT_SUCCESS(Status))
-       {
-               SetLastError (RtlNtStatusToDosError (Status));
-               return FALSE;
-       }
-
-       return TRUE;
+    NTSTATUS Status;
+
+    Status = RtlSelfRelativeToAbsoluteSD(pSelfRelativeSecurityDescriptor,
+                                         pAbsoluteSecurityDescriptor,
+                                         lpdwAbsoluteSecurityDescriptorSize,
+                                         pDacl,
+                                         lpdwDaclSize,
+                                         pSacl,
+                                         lpdwSaclSize,
+                                         pOwner,
+                                         lpdwOwnerSize,
+                                         pPrimaryGroup,
+                                         lpdwPrimaryGroupSize);
+    if (!NT_SUCCESS(Status))
+    {
+        SetLastError(RtlNtStatusToDosError(Status));
+        return FALSE;
+    }
+
+    return TRUE;
 }