summaryrefslogtreecommitdiffstats
path: root/source/include/auth.h
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2008-06-19 16:54:12 +0200
committerVolker Lendecke <vl@samba.org>2008-06-19 18:51:37 +0200
commitdcaedf345e62ab74ea87f0a3fa1e3199c75c5445 (patch)
tree021c25ebb889c02228cd49341d0279ee347ab762 /source/include/auth.h
parent64e9372ab997739d46669c0cc4a4c6edb11d5e64 (diff)
downloadsamba-dcaedf345e62ab74ea87f0a3fa1e3199c75c5445.tar.gz
samba-dcaedf345e62ab74ea87f0a3fa1e3199c75c5445.tar.xz
samba-dcaedf345e62ab74ea87f0a3fa1e3199c75c5445.zip
Wrap the unix token info in a unix_user_token in auth_serversupplied_info
No functional change, this is a preparation for more current_user ref removal
Diffstat (limited to 'source/include/auth.h')
-rw-r--r--source/include/auth.h9
1 files changed, 2 insertions, 7 deletions
diff --git a/source/include/auth.h b/source/include/auth.h
index 56b8144a246..adcd6e943f9 100644
--- a/source/include/auth.h
+++ b/source/include/auth.h
@@ -47,13 +47,8 @@ typedef struct auth_serversupplied_info {
check_ntlm_password and the token creation. */
size_t num_sids;
- uid_t uid;
- gid_t gid;
-
- /* This groups info is needed for when we become_user() for this uid */
- size_t n_groups;
- gid_t *groups;
-
+ struct unix_user_token utok;
+
/* NT group information taken from the info3 structure */
NT_USER_TOKEN *ptok;