From 2477c73b62437fd8d5e1a8b9ee848736d4843044 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 5 Jun 2012 15:39:44 +0200 Subject: [PATCH] s3:smbd: let open_fake_file() take a uint64_t vuid metze --- source3/include/fake_file.h | 2 +- source3/smbd/fake_file.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/include/fake_file.h b/source3/include/fake_file.h index 0581fbcea59..da0c35bb73b 100644 --- a/source3/include/fake_file.h +++ b/source3/include/fake_file.h @@ -41,7 +41,7 @@ struct fake_file_handle { enum FAKE_FILE_TYPE is_fake_file_path(const char *path); enum FAKE_FILE_TYPE is_fake_file(const struct smb_filename *smb_fname); NTSTATUS open_fake_file(struct smb_request *req, connection_struct *conn, - uint16_t current_vuid, + uint64_t current_vuid, enum FAKE_FILE_TYPE fake_file_type, const struct smb_filename *smb_fname, uint32 access_mask, diff --git a/source3/smbd/fake_file.c b/source3/smbd/fake_file.c index 95f6f932d93..01235baaff8 100644 --- a/source3/smbd/fake_file.c +++ b/source3/smbd/fake_file.c @@ -120,7 +120,7 @@ enum FAKE_FILE_TYPE is_fake_file(const struct smb_filename *smb_fname) ****************************************************************************/ NTSTATUS open_fake_file(struct smb_request *req, connection_struct *conn, - uint16_t current_vuid, + uint64_t current_vuid, enum FAKE_FILE_TYPE fake_file_type, const struct smb_filename *smb_fname, uint32 access_mask, -- 2.11.4.GIT