diff options
author | Christian Ambach <ambi@samba.org> | 2011-08-29 17:40:18 +0200 |
---|---|---|
committer | Christian Ambach <ambi@samba.org> | 2011-08-31 09:53:31 +0200 |
commit | 0decdf8ace467f5df939db8291a4516a7dbb019a (patch) | |
tree | b764263e39f4e8a3e4967c1170c009a7c5b22eca | |
parent | 74751446a2a7dc323682d8eee23fddef9d353e16 (diff) | |
download | samba-0decdf8ace467f5df939db8291a4516a7dbb019a.tar.gz samba-0decdf8ace467f5df939db8291a4516a7dbb019a.tar.bz2 samba-0decdf8ace467f5df939db8291a4516a7dbb019a.zip |
s3:lib add some more well-known sids
add S-1-3-2/Creator Owner Server, S-1-3-3/Creator Group Server and
S-1-3-4/Owner Rights to the well-known SID list
-rw-r--r-- | source3/lib/util_wellknown.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/lib/util_wellknown.c b/source3/lib/util_wellknown.c index f2f99af2d0..a6f6a614ef 100644 --- a/source3/lib/util_wellknown.c +++ b/source3/lib/util_wellknown.c @@ -42,6 +42,9 @@ static const struct rid_name_map everyone_users[] = { static const struct rid_name_map creator_owner_users[] = { { 0, "Creator Owner" }, { 1, "Creator Group" }, + { 2, "Creator Owner Server" }, + { 3, "Creator Group Server" }, + { 4, "Owner Rights" }, { 0, NULL}}; static const struct rid_name_map nt_authority_users[] = { |