summaryrefslogtreecommitdiff
path: root/source3/smbd/quotas.c
diff options
context:
space:
mode:
authorSamba Release Account <samba-bugs@samba.org>1997-03-07 17:24:22 +0000
committerSamba Release Account <samba-bugs@samba.org>1997-03-07 17:24:22 +0000
commit3e2f9c3dee3895b44a367ec1b1b2d9b1b3b00e7c (patch)
treef674950c681f1d200be46b507ef605dfd30250bd /source3/smbd/quotas.c
parent89f6150ffec4b4215ecddd764269bda325c7147b (diff)
downloadsamba-3e2f9c3dee3895b44a367ec1b1b2d9b1b3b00e7c.tar.gz
samba-3e2f9c3dee3895b44a367ec1b1b2d9b1b3b00e7c.tar.bz2
samba-3e2f9c3dee3895b44a367ec1b1b2d9b1b3b00e7c.zip
quotas.c: Fixed typo in #ifdef'ed compile.
ufc.c: Added pre-declaration of _ufc_doit(). jra@cygnus.com (This used to be commit 7c690e020ffae9a56c678ae46ae87283a1aa92fe)
Diffstat (limited to 'source3/smbd/quotas.c')
-rw-r--r--source3/smbd/quotas.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/quotas.c b/source3/smbd/quotas.c
index aec349dfd1..05b40ada0f 100644
--- a/source3/smbd/quotas.c
+++ b/source3/smbd/quotas.c
@@ -433,7 +433,7 @@ BOOL disk_quotas(char *path, int *bsize, int *dfree, int *dsize)
/* Use softlimit to determine disk space, except when it has been exceeded */
if ((D.dqb_curblocks>D.dqb_bsoftlimit)
#if !defined(__FreeBSD__)
-||(D.dqb_curfiles>D.dqb_fsoftlimit))
+||(D.dqb_curfiles>D.dqb_fsoftlimit)
#endif
) {
*dfree = 0;