From: Björn Jacke Date: Thu, 6 Sep 2012 08:23:50 +0000 (+0200) Subject: s3:quota: don't force the block size to 512 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=d6cc08b9eeb9de17bc0e610d6cf6dba13c5c8222;p=metze%2Fsamba%2Fwip.git 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 --- diff --git a/source3/smbd/quotas.c b/source3/smbd/quotas.c index 339952e8984f..3d1056d31031 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;