summaryrefslogtreecommitdiffstats
path: root/source/client/smbmnt.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-09-03 18:40:31 +0000
committerJeremy Allison <jra@samba.org>1998-09-03 18:40:31 +0000
commit14500936c321d15995c963766aac67bf1f4e3824 (patch)
treed6334d89735aa240aa8950c6c37a70b35b0ea181 /source/client/smbmnt.c
parentd252d331015b7606618ba1422bb669da003da293 (diff)
downloadsamba-14500936c321d15995c963766aac67bf1f4e3824.tar.gz
samba-14500936c321d15995c963766aac67bf1f4e3824.tar.xz
samba-14500936c321d15995c963766aac67bf1f4e3824.zip
Ok - this is the 64 bit widening check in. It changes the configure
to check for stat64 and friends, and then changes much of Samba to use the data type SMB_OFF_T for file size information. stat/fstat/lstat/lseek/ftruncate have now become sys_stat etc. to hide the 64 bit calls if needed. Note that this still does not expose 64 bit functionality to the client, as the changes to the reply_xxx smb's are not yet done. This code change should make these changes possible. Still to do before full 64 bit-ness to the client: fcntl lock code. statfs code widening of dev_t and ino_t (now possible due to SMB_DEV_T and SMB_OFF_T types being in place). Let me know if wierd things happen after this check-in and I'll fix them :-). Jeremy.
Diffstat (limited to 'source/client/smbmnt.c')
-rw-r--r--source/client/smbmnt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/client/smbmnt.c b/source/client/smbmnt.c
index 9fb0dba99d8..f6753090b8a 100644
--- a/source/client/smbmnt.c
+++ b/source/client/smbmnt.c
@@ -197,7 +197,7 @@ main(int argc, char *argv[])
argv += 1;
argc -= 1;
- if (stat(mount_point, &st) == -1) {
+ if (sys_stat(mount_point, &st) == -1) {
fprintf(stderr, "could not find mount point %s: %s\n",
mount_point, strerror(errno));
exit(1);