diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-06-05 15:56:46 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-06 10:18:41 +0200 |
commit | 2a9a95e673f23ed31ca186c2701b0ec816e370c7 (patch) | |
tree | acd4e9f02981ee41eea21ffd9c31f5b3aac4258f | |
parent | 19d05171fa689e160fa790eceaa2ed35bb976c9a (diff) | |
download | samba-2a9a95e673f23ed31ca186c2701b0ec816e370c7.tar.gz samba-2a9a95e673f23ed31ca186c2701b0ec816e370c7.tar.bz2 samba-2a9a95e673f23ed31ca186c2701b0ec816e370c7.zip |
s3:smbd: let make_connection() take a uint64_t vuid
metze
-rw-r--r-- | source3/smbd/proto.h | 2 | ||||
-rw-r--r-- | source3/smbd/service.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/proto.h b/source3/smbd/proto.h index 3bd8953320..e52e78df9c 100644 --- a/source3/smbd/proto.h +++ b/source3/smbd/proto.h @@ -989,7 +989,7 @@ connection_struct *make_connection_smb2(struct smbd_server_connection *sconn, NTSTATUS *pstatus); connection_struct *make_connection(struct smbd_server_connection *sconn, const char *service_in, - const char *pdev, uint16 vuid, + const char *pdev, uint64_t vuid, NTSTATUS *status); void close_cnum(connection_struct *conn, uint16 vuid); diff --git a/source3/smbd/service.c b/source3/smbd/service.c index 517d96127d..911b826664 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -973,7 +973,7 @@ connection_struct *make_connection_smb2(struct smbd_server_connection *sconn, connection_struct *make_connection(struct smbd_server_connection *sconn, const char *service_in, - const char *pdev, uint16 vuid, + const char *pdev, uint64_t vuid, NTSTATUS *status) { uid_t euid; |