summaryrefslogtreecommitdiff
path: root/source3/include/vfs.h
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2012-06-14 13:34:46 +0200
committerStefan Metzmacher <metze@samba.org>2012-06-15 05:22:41 +0200
commitb27f88898aa604d70d212c524549bb2cfc929170 (patch)
tree208eef56121d2d75d713414b3247df000daa4270 /source3/include/vfs.h
parent67108c8e7eb89ca69247f7865e9a9885fbd441eb (diff)
downloadsamba-b27f88898aa604d70d212c524549bb2cfc929170.tar.gz
samba-b27f88898aa604d70d212c524549bb2cfc929170.tar.bz2
samba-b27f88898aa604d70d212c524549bb2cfc929170.zip
s3:vfs: change files_struct.fnum from int to uint64_t
Signed-off-by: Stefan Metzmacher <metze@samba.org> Autobuild-User(master): Stefan Metzmacher <metze@samba.org> Autobuild-Date(master): Fri Jun 15 05:22:41 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/include/vfs.h')
-rw-r--r--source3/include/vfs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/vfs.h b/source3/include/vfs.h
index 3062aa13a6..723eb6c826 100644
--- a/source3/include/vfs.h
+++ b/source3/include/vfs.h
@@ -185,7 +185,7 @@ struct fd_handle {
typedef struct files_struct {
struct files_struct *next, *prev;
- int fnum;
+ uint64_t fnum;
struct connection_struct *conn;
struct fd_handle *fh;
unsigned int num_smb_operations;