diff options
author | Jeremy Allison <jra@samba.org> | 1998-09-18 00:30:28 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-09-18 00:30:28 +0000 |
commit | 6dfbe2fa1a1d6eb5de05c8f5516c891abe7bdb74 (patch) | |
tree | 36f08d2ca82bde805af9f9f00bbbe591a0191eca /source3/smbd | |
parent | 1e17cbd2a3db061c8638ee8566ded53d14878bca (diff) | |
download | samba-6dfbe2fa1a1d6eb5de05c8f5516c891abe7bdb74.tar.gz samba-6dfbe2fa1a1d6eb5de05c8f5516c891abe7bdb74.tar.bz2 samba-6dfbe2fa1a1d6eb5de05c8f5516c891abe7bdb74.zip |
include/includes.h:
lib/system.c: Can't assume every system has a statvfs varient.
Return -1 for those that don't.
smbd/reply.c: Fixed printf warning.
Jeremy.
(This used to be commit 14c134e8316687aa5a4ee089c2acfa6428faceae)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 93beb12af3..c4aadb9dad 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -932,7 +932,7 @@ int reply_dskattr(connection_struct *conn, char *inbuf,char *outbuf, int dum_siz SSVAL(outbuf,smb_vwv2,512); SSVAL(outbuf,smb_vwv3,dfree); - DEBUG(3,("dskattr dfree=%d\n", dfree)); + DEBUG(3,("dskattr dfree=%d\n", (unsigned int)dfree)); return(outsize); } |