summaryrefslogtreecommitdiff
path: root/source3/smbd/proto.h
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2012-06-05 16:19:01 +0200
committerStefan Metzmacher <metze@samba.org>2012-06-06 10:18:41 +0200
commitd3e79a864d0eaf962ed00794e7424441e80294c1 (patch)
tree08f33bbfb3906aeec4fe270d77f88c2493378934 /source3/smbd/proto.h
parentc535668f7b203be96f002d88840338486a80f802 (diff)
downloadsamba-d3e79a864d0eaf962ed00794e7424441e80294c1.tar.gz
samba-d3e79a864d0eaf962ed00794e7424441e80294c1.tar.bz2
samba-d3e79a864d0eaf962ed00794e7424441e80294c1.zip
s3:smbd: change vuid to uint64_t in uid.c
metze
Diffstat (limited to 'source3/smbd/proto.h')
-rw-r--r--source3/smbd/proto.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/proto.h b/source3/smbd/proto.h
index 664ac46bc9..e73e5b5710 100644
--- a/source3/smbd/proto.h
+++ b/source3/smbd/proto.h
@@ -1097,7 +1097,7 @@ void reply_transs2(struct smb_request *req);
/* The following definitions come from smbd/uid.c */
bool change_to_guest(void);
-bool change_to_user(connection_struct *conn, uint16 vuid);
+bool change_to_user(connection_struct *conn, uint64_t vuid);
bool change_to_root_user(void);
bool smbd_change_to_root_user(void);
bool become_authenticated_pipe_user(struct auth_session_info *session_info);
@@ -1106,7 +1106,7 @@ void become_root(void);
void unbecome_root(void);
void smbd_become_root(void);
void smbd_unbecome_root(void);
-bool become_user(connection_struct *conn, uint16 vuid);
+bool become_user(connection_struct *conn, uint64_t vuid);
bool become_user_by_session(connection_struct *conn,
const struct auth_session_info *session_info);
bool unbecome_user(void);
@@ -1114,7 +1114,7 @@ uid_t get_current_uid(connection_struct *conn);
gid_t get_current_gid(connection_struct *conn);
const struct security_unix_token *get_current_utok(connection_struct *conn);
const struct security_token *get_current_nttok(connection_struct *conn);
-uint16_t get_current_vuid(connection_struct *conn);
+uint64_t get_current_vuid(connection_struct *conn);
/* The following definitions come from smbd/utmp.c */