Commit c0d79c47 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

advapi32: Improve the stub for GetEffectiveRightsFromAclA.

parent c4d12bde
......@@ -1100,7 +1100,8 @@ GetEffectiveRightsFromAclA( PACL pacl, PTRUSTEEA pTrustee, PACCESS_MASK pAccessR
{
FIXME("%p %p %p - stub\n", pacl, pTrustee, pAccessRights);
return 1;
*pAccessRights = STANDARD_RIGHTS_ALL | SPECIFIC_RIGHTS_ALL;
return 0;
}
DWORD WINAPI
......
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