- Hackplement ObLogSecurityDescriptor for W2K3 drivers to be happy.
Modified: trunk/reactos/ntoskrnl/ob/security.c
--- trunk/reactos/ntoskrnl/ob/security.c 2005-11-08 16:59:41 UTC (rev 19056) +++ trunk/reactos/ntoskrnl/ob/security.c 2005-11-08 17:07:57 UTC (rev 19057) @@ -263,7 +263,10 @@
IN ULONG RefBias) { DPRINT1("ObLogSecurityDescriptor is not implemented!\n");
- return STATUS_NOT_IMPLEMENTED;
+ + /* HACK: Return the same descriptor back */ + *OutputSecurityDescriptor = InputSecurityDescriptor; + return STATUS_SUCCESS;
}