summaryrefslogtreecommitdiff
path: root/source3/include/smb.h
diff options
context:
space:
mode:
Diffstat (limited to 'source3/include/smb.h')
-rw-r--r--source3/include/smb.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/include/smb.h b/source3/include/smb.h
index b27c531937..8600bcc120 100644
--- a/source3/include/smb.h
+++ b/source3/include/smb.h
@@ -442,10 +442,10 @@ struct cli_state {
typedef struct
{
- int size;
+ SMB_OFF_T size;
int mode;
- int uid;
- int gid;
+ uid_t uid;
+ gid_t gid;
/* these times are normally kept in GMT */
time_t mtime;
time_t atime;
@@ -559,12 +559,12 @@ typedef struct files_struct
int fnum;
connection_struct *conn;
file_fd_struct *fd_ptr;
- int pos;
- uint32 size;
+ SMB_OFF_T pos;
+ SMB_OFF_T size;
int mode;
int vuid;
char *mmap_ptr;
- uint32 mmap_size;
+ SMB_OFF_T mmap_size;
write_bmpx_struct *wbmpx_ptr;
struct timeval open_time;
BOOL open;