diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-06-05 13:05:43 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-06 10:18:40 +0200 |
commit | 5a260a1d58a56054762fee17ca66e0f87a5aac85 (patch) | |
tree | 24f79e332ba5beacf75267383273cf44a517380c | |
parent | defebd9e492b19fc91cfd1a07fa5554e1a636482 (diff) | |
download | samba-5a260a1d58a56054762fee17ca66e0f87a5aac85.tar.gz samba-5a260a1d58a56054762fee17ca66e0f87a5aac85.tar.bz2 samba-5a260a1d58a56054762fee17ca66e0f87a5aac85.zip |
s3:include: change connection_struct->vuid to uint64_t
metze
-rw-r--r-- | source3/include/vfs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h index c565806116..bde644fa8c 100644 --- a/source3/include/vfs.h +++ b/source3/include/vfs.h @@ -309,7 +309,7 @@ typedef struct connection_struct { */ gid_t force_group_gid; - uint16 vuid; /* vuid of user who *opened* this connection, or UID_FIELD_INVALID */ + uint64_t vuid; /* vuid of user who *opened* this connection, or UID_FIELD_INVALID */ time_t lastused; time_t lastused_count; |