typo in 2.4.1/fs/dquot.c

Vladimir V. Saveliev (vs@namesys.botik.ru)
Thu, 15 Feb 2001 15:24:51 +0300


This is a multi-part message in MIME format.
--------------E658EBB7E1C22F070581AF97
Content-Type: text/plain; charset=koi8-r
Content-Transfer-Encoding: 7bit

Hi

The attached is a fix for typo in 2.4.1/fs/dquot.c. It is not fixed yet
in 2.4.2pre3.
This typo causes quotactl (Q_GETQUOTA & GRPQUOTA, ..) to return EPERM.

Jan Kara (jack@suse.cz) confirmed that this is really a typo and that
the fix is a right one.

Thanks,
vs

--------------E658EBB7E1C22F070581AF97
Content-Type: text/plain; charset=koi8-r;
name="dquot.c.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="dquot.c.patch"

--- dquot.c.orig Wed Feb 14 04:08:26 2001
+++ dquot.c Wed Feb 14 04:09:00 2001
@@ -1536,7 +1536,7 @@
break;
case Q_GETQUOTA:
if (((type == USRQUOTA && current->euid != id) ||
- (type == GRPQUOTA && in_egroup_p(id))) &&
+ (type == GRPQUOTA && !in_egroup_p(id))) &&
!capable(CAP_SYS_RESOURCE))
goto out;
break;

--------------E658EBB7E1C22F070581AF97--

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/