From 1bd3cbd3125e03117aed4288f1addcdfd9f1f109 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 13 Oct 2005 14:59:47 +0000 Subject: [PATCH] r10962: fix setting of quotas on linux kernel with the struct if_dqblk interface metze (This used to be commit 1eafe33c887194d828d685ac8677469917b6c419) --- source3/lib/sysquotas_linux.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/lib/sysquotas_linux.c b/source3/lib/sysquotas_linux.c index 28a86196e2b..761562b402e 100644 --- a/source3/lib/sysquotas_linux.c +++ b/source3/lib/sysquotas_linux.c @@ -394,6 +394,7 @@ static int sys_set_linux_gen_quota(const char *path, const char *bdev, enum SMB_ D.dqb_ihardlimit = (dp->ihardlimit*dp->bsize)/bsize; D.dqb_isoftlimit = (dp->isoftlimit*dp->bsize)/bsize; } + D.dqb_valid = QIF_LIMITS; qflags = dp->qflags; -- 2.34.1