diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-12-06 07:10:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:06:22 -0500 |
commit | 9defca2895fb94f48df00a4e388ba4f5de5d5ebc (patch) | |
tree | a230f54671a53dbbad8ce709be141a9b6c9f3f68 /source4/auth | |
parent | a42dba94d0d6d8203d845f771817d4e48b8c5205 (diff) | |
download | samba-9defca2895fb94f48df00a4e388ba4f5de5d5ebc.tar.gz samba-9defca2895fb94f48df00a4e388ba4f5de5d5ebc.tar.bz2 samba-9defca2895fb94f48df00a4e388ba4f5de5d5ebc.zip |
r4072: - changed the names of some of the well known sids to be more consistent
- added string constants for the important privileges.
(This used to be commit d5bc706140faf2d0a917f90f87884cd097e8a48c)
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/auth_util.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/auth/auth_util.c b/source4/auth/auth_util.c index 1ea7da4672..503e1dee82 100644 --- a/source4/auth/auth_util.c +++ b/source4/auth/auth_util.c @@ -387,13 +387,13 @@ NTSTATUS create_nt_user_token(TALLOC_CTX *mem_ctx, * don't really support) is the addition of Authenticated_Users. */ ptoken->user_sids[2] = dom_sid_parse_talloc(mem_ctx, SID_WORLD); - ptoken->user_sids[3] = dom_sid_parse_talloc(mem_ctx, SID_NETWORK); + ptoken->user_sids[3] = dom_sid_parse_talloc(mem_ctx, SID_NT_NETWORK); if (is_guest) { ptoken->user_sids[4] = dom_sid_parse_talloc(mem_ctx, SID_BUILTIN_GUESTS); ptoken->num_sids++; } else { - ptoken->user_sids[4] = dom_sid_parse_talloc(mem_ctx, SID_AUTHENTICATED_USERS); + ptoken->user_sids[4] = dom_sid_parse_talloc(mem_ctx, SID_NT_AUTHENTICATED_USERS); ptoken->num_sids++; } @@ -453,7 +453,7 @@ NTSTATUS make_server_info_guest(TALLOC_CTX *mem_ctx, struct auth_serversupplied_ (*server_info)->guest = True; - (*server_info)->user_sid = dom_sid_parse_talloc((*server_info), SID_ANONYMOUS); + (*server_info)->user_sid = dom_sid_parse_talloc((*server_info), SID_NT_ANONYMOUS); (*server_info)->primary_group_sid = dom_sid_parse_talloc((*server_info), SID_BUILTIN_GUESTS); (*server_info)->n_domain_groups = 0; (*server_info)->domain_groups = NULL; |