summaryrefslogtreecommitdiffstats
path: root/source/smbd/reply.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1999-02-01 21:03:43 +0000
committerJeremy Allison <jra@samba.org>1999-02-01 21:03:43 +0000
commit71fa7753a8515e75f0e7ccb36b3d367fbdc42b0b (patch)
treed909d6e90116f76e7ba30bc8b946341690dad7db /source/smbd/reply.c
parent80d912f31e6f5c0794f51b18b35a8946736c725e (diff)
downloadsamba-71fa7753a8515e75f0e7ccb36b3d367fbdc42b0b.tar.gz
samba-71fa7753a8515e75f0e7ccb36b3d367fbdc42b0b.tar.xz
samba-71fa7753a8515e75f0e7ccb36b3d367fbdc42b0b.zip
locking/locking_shm.c: Added printf to help track down negative share mode problem.
printing/print_svid.c: Fix for DG/UX lpstat. smbd/dfree.c: Added 'max_four_gig' parameter to normalize to 4GB when asked (used to be the default). smbd/open.c smbd/reply.c smbd/trans2.c: Changed to allow a <4GB volume size to be returned on a trans2 qfsinfo level 1 call. NT clients refuse to do the correct call to Samba servers (Herb recons it's the unicode bit) - this allows even a level 1 to return a volume size up to 9444732961341243916800 bytes (should be enough for now, until we get the unicode support added :-). Jeremy.
Diffstat (limited to 'source/smbd/reply.c')
-rw-r--r--source/smbd/reply.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/reply.c b/source/smbd/reply.c
index d338e288ecf..ec2bdcb55cd 100644
--- a/source/smbd/reply.c
+++ b/source/smbd/reply.c
@@ -1054,7 +1054,7 @@ int reply_dskattr(connection_struct *conn, char *inbuf,char *outbuf, int dum_siz
int outsize = 0;
SMB_BIG_UINT dfree,dsize,bsize;
- sys_disk_free(".",&bsize,&dfree,&dsize);
+ sys_disk_free(".",True,&bsize,&dfree,&dsize);
outsize = set_message(outbuf,5,0,True);