- Hackplement ObLogSecurityDescriptor for W2K3 drivers to be happy.

svn path=/trunk/; revision=19057
This commit is contained in:
Alex Ionescu 2005-11-08 17:07:57 +00:00
parent db3f6ecb75
commit d68f0cbd56

View file

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