Commit 518d0640 authored by Louis Lenders's avatar Louis Lenders Committed by Alexandre Julliard

ntdll: RtlConvertToAutoInheritSecurityObject is NTSTATUS, not BOOL.

parent 5f71e720
......@@ -1707,7 +1707,7 @@ NTSTATUS WINAPI RtlQueryInformationAcl(
return status;
}
BOOL WINAPI RtlConvertToAutoInheritSecurityObject(
NTSTATUS WINAPI RtlConvertToAutoInheritSecurityObject(
PSECURITY_DESCRIPTOR pdesc,
PSECURITY_DESCRIPTOR cdesc,
PSECURITY_DESCRIPTOR* ndesc,
......@@ -1717,5 +1717,5 @@ BOOL WINAPI RtlConvertToAutoInheritSecurityObject(
{
FIXME("%p %p %p %p %d %p - stub\n", pdesc, cdesc, ndesc, objtype, isdir, genmap);
return FALSE;
return STATUS_NOT_IMPLEMENTED;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment