diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-06-05 16:07:13 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2012-06-06 10:18:41 +0200 |
commit | 9ffb8f153287bb95e5189282c6f6b40ddf52ef61 (patch) | |
tree | 112ba9708f1bfe5a506f60a236f31035d520a0f7 /source3/smbd | |
parent | 69d1f9b83684172ddb8639dbf64ce7cb2743e450 (diff) | |
download | samba-9ffb8f153287bb95e5189282c6f6b40ddf52ef61.tar.gz samba-9ffb8f153287bb95e5189282c6f6b40ddf52ef61.tar.bz2 samba-9ffb8f153287bb95e5189282c6f6b40ddf52ef61.zip |
s3:smbd: let close_cnum() take a uint64_t vuid
metze
Diffstat (limited to 'source3/smbd')
-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 e52e78df9c..664ac46bc9 100644 --- a/source3/smbd/proto.h +++ b/source3/smbd/proto.h @@ -991,7 +991,7 @@ connection_struct *make_connection(struct smbd_server_connection *sconn, const char *service_in, const char *pdev, uint64_t vuid, NTSTATUS *status); -void close_cnum(connection_struct *conn, uint16 vuid); +void close_cnum(connection_struct *conn, uint64_t vuid); /* The following definitions come from smbd/session.c */ struct sessionid; diff --git a/source3/smbd/service.c b/source3/smbd/service.c index 911b826664..1bcbbcda6a 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -1090,7 +1090,7 @@ connection_struct *make_connection(struct smbd_server_connection *sconn, Close a cnum. ****************************************************************************/ -void close_cnum(connection_struct *conn, uint16 vuid) +void close_cnum(connection_struct *conn, uint64_t vuid) { file_close_conn(conn); |