From 53ad886f75f189a7c865acf455398c3f3ce38111 Mon Sep 17 00:00:00 2001 From: Christian Ambach Date: Thu, 1 Sep 2011 16:09:01 +0200 Subject: security: add local authority well-known SIDs add the S-1-2 well-known SID family Autobuild-User: Christian Ambach Autobuild-Date: Thu Nov 24 19:01:08 CET 2011 on sn-devel-104 --- source3/lib/util_wellknown.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source3/lib') diff --git a/source3/lib/util_wellknown.c b/source3/lib/util_wellknown.c index 19ac7cee34..f3c0f17a2a 100644 --- a/source3/lib/util_wellknown.c +++ b/source3/lib/util_wellknown.c @@ -39,6 +39,11 @@ static const struct rid_name_map everyone_users[] = { { 0, "Everyone" }, { 0, NULL}}; +static const struct rid_name_map local_authority_users[] = { + { 0, "Local" }, + { 1, "Console Logon" }, + { 0, NULL}}; + static const struct rid_name_map creator_owner_users[] = { { 0, "Creator Owner" }, { 1, "Creator Group" }, @@ -70,6 +75,7 @@ static const struct rid_name_map nt_authority_users[] = { static struct sid_name_map_info special_domains[] = { { &global_sid_World_Domain, "", everyone_users }, + { &global_sid_Local_Authority, "", local_authority_users }, { &global_sid_Creator_Owner_Domain, "", creator_owner_users }, { &global_sid_NT_Authority, "NT Authority", nt_authority_users }, { NULL, NULL, NULL }}; -- cgit