From bf797c30f4c739bef4a0a82c25647433be57ec51 Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Wed, 4 Apr 2001 05:48:47 +0000 Subject: [PATCH] fix [xfs_]check in conjunction with group quota - a reference to projid was still hidden away in there. --- db/check.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/db/check.c b/db/check.c index 8bfc99e6c..e23d798d8 100644 --- a/db/check.c +++ b/db/check.c @@ -2780,9 +2780,7 @@ process_inode( default: } if (ic) - quota_add(dic->di_version >= XFS_DINODE_VERSION_2 ? - dic->di_projid : -1, - dic->di_uid, 0, bc, ic, rc); + quota_add(dic->di_gid, dic->di_uid, 0, bc, ic, rc); } totblocks = totdblocks + totiblocks + atotdblocks + atotiblocks; if (totblocks != dic->di_nblocks) { -- 2.47.3