diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-08-31 11:18:11 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-08-31 11:25:41 +1000 |
commit | eee63b7e75e6fe3e244285698211da46052e7c18 (patch) | |
tree | 299549f06a2933445812e6c222f7affbddedf11f /source3/include | |
parent | 8c15cf54ae797d8f01a61228d367b5a785f06d98 (diff) | |
download | samba-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/include')
-rw-r--r-- | source3/include/smb.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index 011851ab81..129be1cad8 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -234,7 +234,7 @@ extern const struct dom_sid global_sid_Unix_Groups; typedef struct nt_user_token { size_t num_sids; struct dom_sid *sids; - SE_PRIV privileges; + SE_PRIV privilege_mask; } NT_USER_TOKEN; typedef struct unix_user_token { |