From 6e2b50969726c6ed758ce2a40c89b4b69337cf0b Mon Sep 17 00:00:00 2001 From: San Date: Wed, 20 Mar 2019 09:54:01 +0300 Subject: [PATCH 1/2] Fixed invalid Sid bug --- src/dll/posix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dll/posix.c b/src/dll/posix.c index ad4ef841..4ae27355 100644 --- a/src/dll/posix.c +++ b/src/dll/posix.c @@ -190,7 +190,7 @@ FSP_API NTSTATUS FspPosixMapUidToSid(UINT32 Uid, PSID *PSid) Uid - 0x30000); } } - else if (0x100000 <= Uid && Uid < 0x200000) + else if (0x100000 <= Uid && Uid < 0x300000) { if (0 != FspPrimaryDomainSid && 5 == FspPrimaryDomainSid->IdentifierAuthority.Value[5] && From e6fb014c79526aad2bf93599ec960de290ca1536 Mon Sep 17 00:00:00 2001 From: San Date: Sat, 23 Mar 2019 02:57:25 +0300 Subject: [PATCH 2/2] Updated contributors list --- Contributors.asciidoc | 1 + 1 file changed, 1 insertion(+) diff --git a/Contributors.asciidoc b/Contributors.asciidoc index e5c34bb8..e619ac29 100644 --- a/Contributors.asciidoc +++ b/Contributors.asciidoc @@ -63,4 +63,5 @@ CONTRIBUTOR LIST |John Oberschelp |john at oberschelp.net |Sam Kelly (DuroSoft Technologies LLC, https://durosoft.com) |sam at durosoft.com |Tobias Urlaub |saibotu at outlook.de +|Santiago Ganis |sganis at gmail.com |===