summaryrefslogtreecommitdiff
path: root/source3/include/smb.h
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-12-04 03:12:28 +0000
committerJeremy Allison <jra@samba.org>2002-12-04 03:12:28 +0000
commit9dc3ec5af335ffea93135129d22461cc66e310c9 (patch)
treecd5fcb72aed1e26c8eec0d94c27a7a6773d54358 /source3/include/smb.h
parentf23eae814dc99273032f66b123c0084627539918 (diff)
downloadsamba-9dc3ec5af335ffea93135129d22461cc66e310c9.tar.gz
samba-9dc3ec5af335ffea93135129d22461cc66e310c9.tar.bz2
samba-9dc3ec5af335ffea93135129d22461cc66e310c9.zip
Fix for 64 bit issues with oplocks and allocation size.
Jeremy. (This used to be commit 4a9c995e50b24e6ee6ec58c46da32100a8197724)
Diffstat (limited to 'source3/include/smb.h')
-rw-r--r--source3/include/smb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h
index 83125989df..07b3150054 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -365,8 +365,8 @@ typedef struct files_struct
SMB_INO_T inode;
BOOL delete_on_close;
SMB_OFF_T pos;
- SMB_OFF_T size;
- SMB_OFF_T initial_allocation_size; /* Faked up initial allocation on disk. */
+ SMB_BIG_UINT size;
+ SMB_BIG_UINT initial_allocation_size; /* Faked up initial allocation on disk. */
mode_t mode;
uint16 vuid;
write_bmpx_struct *wbmpx_ptr;