diff options
author | Volker Lendecke <vl@samba.org> | 2008-05-08 15:53:55 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-05-10 11:17:01 +0200 |
commit | 53a623d8a69b5dd7fbd964013032878e09032375 (patch) | |
tree | aa65bf69c68b6346c14b0f1bc251cb5e254849fc /source3/include | |
parent | 776caa081bc36aac0ab7cc826836740f5bf0bf24 (diff) | |
download | samba-53a623d8a69b5dd7fbd964013032878e09032375.tar.gz samba-53a623d8a69b5dd7fbd964013032878e09032375.tar.bz2 samba-53a623d8a69b5dd7fbd964013032878e09032375.zip |
Remove the unix token info from connection_struct
(This used to be commit 2834dacc8d49f77fe55fb5d7e3eb2dda431d1d3d)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smb.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h index e1f17a178a..5248fd2725 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -627,18 +627,10 @@ typedef struct connection_struct { struct auth_serversupplied_info *server_info; char *user; /* name of user who *opened* this connection */ - uid_t uid; /* uid of user who *opened* this connection */ - gid_t gid; /* gid of user who *opened* this connection */ char client_address[INET6_ADDRSTRLEN]; /* String version of client IP address. */ uint16 vuid; /* vuid of user who *opened* this connection, or UID_FIELD_INVALID */ - /* following groups stuff added by ih */ - - /* This groups info is valid for the user that *opened* the connection */ - size_t ngroups; - gid_t *groups; - time_t lastused; time_t lastused_count; bool used; |