From 74751446a2a7dc323682d8eee23fddef9d353e16 Mon Sep 17 00:00:00 2001 From: Christian Ambach Date: Mon, 29 Aug 2011 17:36:25 +0200 Subject: [PATCH] s3:lib add new well-known SIDs for BUILTIN Distributed COM Users, Cryptographic Operators, Event Log Readers and Certificate Service DCOM Access were missing from the BUILTIN well-known SID list --- source3/lib/util_builtin.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/source3/lib/util_builtin.c b/source3/lib/util_builtin.c index b370a76c691..3aae509f737 100644 --- a/source3/lib/util_builtin.c +++ b/source3/lib/util_builtin.c @@ -52,6 +52,14 @@ static const struct rid_name_map builtin_aliases[] = { "Windows Authorization Access Group" }, { BUILTIN_RID_TS_LICENSE_SERVERS, "Terminal Server License Servers" }, + { BUILTIN_RID_DISTRIBUTED_COM_USERS, + "Distributed COM Users" }, + { BUILTIN_RID_CRYPTO_OPERATORS, + "Cryptographic Operators" }, + { BUILTIN_RID_EVENT_LOG_READERS, + "Event Log Readers" }, + { BUILTIN_RID_CERT_SERV_DCOM_ACCESS, + "Certificate Service DCOM Access" }, { 0, NULL}}; /******************************************************************* -- 2.34.1