diff options
author | Christian Ambach <ambi@samba.org> | 2011-08-29 17:36:25 +0200 |
---|---|---|
committer | Christian Ambach <ambi@samba.org> | 2011-08-31 09:53:31 +0200 |
commit | 74751446a2a7dc323682d8eee23fddef9d353e16 (patch) | |
tree | 3985f358ba8229afc563bf016440f75ccbc3fec0 /source3 | |
parent | b43c69bedfc519e4e53d2c9b0ba2693bdaa1d67e (diff) | |
download | samba-74751446a2a7dc323682d8eee23fddef9d353e16.tar.gz samba-74751446a2a7dc323682d8eee23fddef9d353e16.tar.bz2 samba-74751446a2a7dc323682d8eee23fddef9d353e16.zip |
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
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/util_builtin.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/source3/lib/util_builtin.c b/source3/lib/util_builtin.c index b370a76c69..3aae509f73 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}}; /******************************************************************* |