diff options
author | Volker Lendecke <vl@samba.org> | 2008-05-08 15:09:02 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-05-10 11:17:01 +0200 |
commit | 776caa081bc36aac0ab7cc826836740f5bf0bf24 (patch) | |
tree | 0656060f12bf3a84b1b6252dcb95a91626dfbcf3 /source3/include | |
parent | 0c2bf9521efcf066268016bdab5d7a30bf879e26 (diff) | |
download | samba-776caa081bc36aac0ab7cc826836740f5bf0bf24.tar.gz samba-776caa081bc36aac0ab7cc826836740f5bf0bf24.tar.bz2 samba-776caa081bc36aac0ab7cc826836740f5bf0bf24.zip |
Replace nt_user_token with server_info in connection_struct
(This used to be commit a3738aef59e97d4533010b048534d937d36c0950)
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 dd8513f704..e1f17a178a 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -527,6 +527,7 @@ typedef struct files_struct { struct vuid_cache_entry { uint16 vuid; + struct auth_serversupplied_info *server_info; bool read_only; bool admin_user; }; @@ -637,7 +638,6 @@ typedef struct connection_struct { /* This groups info is valid for the user that *opened* the connection */ size_t ngroups; gid_t *groups; - NT_USER_TOKEN *nt_user_token; time_t lastused; time_t lastused_count; |