- Hackplement ObLogSecurityDescriptor for W2K3 drivers to be happy.
authorAlex Ionescu <aionescu@gmail.com>
Tue, 8 Nov 2005 17:07:57 +0000 (17:07 +0000)
committerAlex Ionescu <aionescu@gmail.com>
Tue, 8 Nov 2005 17:07:57 +0000 (17:07 +0000)
svn path=/trunk/; revision=19057

reactos/ntoskrnl/ob/security.c

index 2230a99..eef9009 100644 (file)
@@ -263,7 +263,10 @@ ObLogSecurityDescriptor(IN PSECURITY_DESCRIPTOR InputSecurityDescriptor,
                         IN ULONG RefBias)
 {
     DPRINT1("ObLogSecurityDescriptor is not implemented!\n");
                         IN ULONG RefBias)
 {
     DPRINT1("ObLogSecurityDescriptor is not implemented!\n");
-    return STATUS_NOT_IMPLEMENTED;
+
+    /* HACK: Return the same descriptor back */
+    *OutputSecurityDescriptor = InputSecurityDescriptor;
+    return STATUS_SUCCESS;
 }
 
 
 }