From d6cc08b9eeb9de17bc0e610d6cf6dba13c5c8222 Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Thu, 6 Sep 2012 10:23:50 +0200 Subject: s3:quota: don't force the block size to 512 there is no point in forcing the block size to 512 when curblocks is 1. This will only lead to false quota reporting. See bug #3272 --- source3/smbd/quotas.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/source3/smbd/quotas.c b/source3/smbd/quotas.c index 339952e898..3d1056d310 100644 --- a/source3/smbd/quotas.c +++ b/source3/smbd/quotas.c @@ -203,9 +203,6 @@ static bool nfs_quotas(char *nfspath, uid_t euser_id, uint64_t *bsize, uint64_t *bsize = gqr.getquota_rslt_u.gqr_rquota.rq_bsize; *dsize = D.dqb_bsoftlimit; - if (D.dqb_curblocks == 1) - *bsize = 512; - if (D.dqb_curblocks > D.dqb_bsoftlimit) { *dfree = 0; *dsize = D.dqb_curblocks; -- cgit