diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-06-05 15:21:52 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-06 10:18:40 +0200 |
commit | c0e5cc0686c8b02b4585299fce0c0511da827d42 (patch) | |
tree | 43323b446a9fb756d27980294096dd16ee89b721 | |
parent | 21e6db8f7e470958cfaf8ee227329d06131a98e0 (diff) | |
download | samba-c0e5cc0686c8b02b4585299fce0c0511da827d42.tar.gz samba-c0e5cc0686c8b02b4585299fce0c0511da827d42.tar.bz2 samba-c0e5cc0686c8b02b4585299fce0c0511da827d42.zip |
s3:include: change current_user->vuid to uint64_t
metze
-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 811921e790..832438f5a9 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -158,7 +158,7 @@ struct sys_notify_context { struct current_user { struct connection_struct *conn; - uint16 vuid; + uint64_t vuid; /* SMB2 compat */ struct security_unix_token ut; struct security_token *nt_user_token; }; |