diff options
author | Jeremy Allison <jra@samba.org> | 1998-09-11 21:42:18 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-09-11 21:42:18 +0000 |
commit | 9b20e5bac2a7b83f8e3dfdf3a274a1ce12dbd92c (patch) | |
tree | 645fd7c7d70c04e88018e1c1233dc8df52989562 /source3/include | |
parent | 27d0bef143fbc4d7547c022046c094bbdbd0bfc1 (diff) | |
download | samba-9b20e5bac2a7b83f8e3dfdf3a274a1ce12dbd92c.tar.gz samba-9b20e5bac2a7b83f8e3dfdf3a274a1ce12dbd92c.tar.bz2 samba-9b20e5bac2a7b83f8e3dfdf3a274a1ce12dbd92c.zip |
Ok so with this bugfix 64 bit file access actually seems to work :-).
Problems were just dumb bugs like (defining sys_lseek to return 'int' DOH !).
Jeremy.
(This used to be commit 54dd51176fbab18af0b21bdee71b53f8f86573a8)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 4c966b2faa..a864cd7033 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -159,7 +159,7 @@ int sys_stat(char *fname,SMB_STRUCT_STAT *sbuf); int sys_fstat(int fd,SMB_STRUCT_STAT *sbuf); int sys_lstat(char *fname,SMB_STRUCT_STAT *sbuf); int sys_ftruncate(int fd, SMB_OFF_T offset); -int sys_lseek(int fd, SMB_OFF_T offset, int whence); +SMB_OFF_T sys_lseek(int fd, SMB_OFF_T offset, int whence); int dos_unlink(char *fname); int dos_open(char *fname,int flags,int mode); DIR *dos_opendir(char *dname); |