diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-08-31 09:32:52 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-08-31 10:20:14 +1000 |
commit | 8c15cf54ae797d8f01a61228d367b5a785f06d98 (patch) | |
tree | ab0ad383708bccfaf268cc11a3cc1121f6d8bfbc /source3/include | |
parent | 6beb5563f3464cf32109c9069b39a5cf71134321 (diff) | |
download | samba-8c15cf54ae797d8f01a61228d367b5a785f06d98.tar.gz samba-8c15cf54ae797d8f01a61228d367b5a785f06d98.tar.bz2 samba-8c15cf54ae797d8f01a61228d367b5a785f06d98.zip |
s3-auth Rename NT_USER_TOKEN user_sids -> sids
This is closer to the struct security_token from security.idl
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 74f1eb535a..011851ab81 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -233,7 +233,7 @@ extern const struct dom_sid global_sid_Unix_Groups; typedef struct nt_user_token { size_t num_sids; - struct dom_sid *user_sids; + struct dom_sid *sids; SE_PRIV privileges; } NT_USER_TOKEN; |