- Remove unimplemented macro in SeOpenObjectAuditAlarm and replace it with a DPRINT1...
authorAlex Ionescu <aionescu@gmail.com>
Tue, 8 Nov 2005 17:22:26 +0000 (17:22 +0000)
committerAlex Ionescu <aionescu@gmail.com>
Tue, 8 Nov 2005 17:22:26 +0000 (17:22 +0000)
svn path=/trunk/; revision=19060

reactos/ntoskrnl/ob/security.c
reactos/ntoskrnl/se/audit.c

index eef9009..376d439 100644 (file)
@@ -262,9 +262,8 @@ ObLogSecurityDescriptor(IN PSECURITY_DESCRIPTOR InputSecurityDescriptor,
                         OUT PSECURITY_DESCRIPTOR *OutputSecurityDescriptor,
                         IN ULONG RefBias)
 {
-    DPRINT1("ObLogSecurityDescriptor is not implemented!\n");
-
     /* HACK: Return the same descriptor back */
+    DPRINT1("ObLogSecurityDescriptor is not implemented!\n");
     *OutputSecurityDescriptor = InputSecurityDescriptor;
     return STATUS_SUCCESS;
 }
index 4f90c6d..9455418 100644 (file)
@@ -225,7 +225,7 @@ SeOpenObjectAuditAlarm(IN PUNICODE_STRING ObjectTypeName,
                       IN KPROCESSOR_MODE AccessMode,
                       OUT PBOOLEAN GenerateOnClose)
 {
-  UNIMPLEMENTED;
+    DPRINT1("SeOpenObjectAuditAlarm is UNIMPLEMENTED!\n");
 }