summaryrefslogtreecommitdiff
path: root/source3/libgpo
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2010-08-31 11:18:11 +1000
committerAndrew Bartlett <abartlet@samba.org>2010-08-31 11:25:41 +1000
commiteee63b7e75e6fe3e244285698211da46052e7c18 (patch)
tree299549f06a2933445812e6c222f7affbddedf11f /source3/libgpo
parent8c15cf54ae797d8f01a61228d367b5a785f06d98 (diff)
downloadsamba-eee63b7e75e6fe3e244285698211da46052e7c18.tar.gz
samba-eee63b7e75e6fe3e244285698211da46052e7c18.tar.bz2
samba-eee63b7e75e6fe3e244285698211da46052e7c18.zip
s3-auth Rename NT_USER_TOKEN privileges -> privilege_mask
This is closer to the struct security_token from security.idl Andrew Bartlett
Diffstat (limited to 'source3/libgpo')
-rw-r--r--source3/libgpo/gpo_reg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libgpo/gpo_reg.c b/source3/libgpo/gpo_reg.c
index 10c4160b02..9821dd2178 100644
--- a/source3/libgpo/gpo_reg.c
+++ b/source3/libgpo/gpo_reg.c
@@ -37,7 +37,7 @@ struct nt_user_token *registry_create_system_token(TALLOC_CTX *mem_ctx)
return NULL;
}
- token->privileges = se_priv_all;
+ token->privilege_mask = se_priv_all;
if (!NT_STATUS_IS_OK(add_sid_to_array(token, &global_sid_System,
&token->sids, &token->num_sids))) {