From 607f4f62b86e9f7b4b35af56943782102c0fa6d6 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Thu, 12 Nov 2015 12:30:12 +0000 Subject: [PATCH] [NTMARTA] AccpGetTrusteeSid: Ignore pMultipleTrustee and MultipleTrusteeOperation. svn path=/trunk/; revision=69876 --- reactos/dll/win32/ntmarta/ntmarta.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/reactos/dll/win32/ntmarta/ntmarta.c b/reactos/dll/win32/ntmarta/ntmarta.c index 062fe7674da..858f44564e3 100644 --- a/reactos/dll/win32/ntmarta/ntmarta.c +++ b/reactos/dll/win32/ntmarta/ntmarta.c @@ -513,11 +513,14 @@ AccpGetTrusteeSid(IN PTRUSTEE_W Trustee, *ppSid = NULL; *Allocated = FALSE; + /* Windows ignores this */ +#if 0 if (Trustee->pMultipleTrustee || Trustee->MultipleTrusteeOperation != NO_MULTIPLE_TRUSTEE) { /* This is currently not supported */ return ERROR_INVALID_PARAMETER; } +#endif switch (Trustee->TrusteeForm) { -- 2.17.1