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( ...@@ -1707,7 +1707,7 @@ NTSTATUS WINAPI RtlQueryInformationAcl(
return status; return status;
} }
BOOL WINAPI RtlConvertToAutoInheritSecurityObject( NTSTATUS WINAPI RtlConvertToAutoInheritSecurityObject(
PSECURITY_DESCRIPTOR pdesc, PSECURITY_DESCRIPTOR pdesc,
PSECURITY_DESCRIPTOR cdesc, PSECURITY_DESCRIPTOR cdesc,
PSECURITY_DESCRIPTOR* ndesc, PSECURITY_DESCRIPTOR* ndesc,
...@@ -1717,5 +1717,5 @@ BOOL WINAPI RtlConvertToAutoInheritSecurityObject( ...@@ -1717,5 +1717,5 @@ BOOL WINAPI RtlConvertToAutoInheritSecurityObject(
{ {
FIXME("%p %p %p %p %d %p - stub\n", pdesc, cdesc, ndesc, objtype, isdir, genmap); 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