From 6dddf1d27c0f72756c790735d1dedde6591cc15d Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 6 Apr 2009 16:18:14 -0400 Subject: [PATCH] quota-fs: Compile fix for OSes without GRPQUOTA define. --HG-- branch : HEAD --- src/plugins/quota/quota-fs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/quota/quota-fs.c b/src/plugins/quota/quota-fs.c index cd4135c258..f4b0989e53 100644 --- a/src/plugins/quota/quota-fs.c +++ b/src/plugins/quota/quota-fs.c @@ -397,7 +397,7 @@ static int do_rquota_user(struct fs_quota_root *root, bool bytes, static int do_rquota_group(struct fs_quota_root *root, bool bytes, uint64_t *value_r, uint64_t *limit_r) { -#ifdef EXT_RQUOTAVERS +#if defined(EXT_RQUOTAVERS) && defined(GRPQUOTA) struct getquota_rslt result; ext_getquota_args args; struct timeval timeout; -- 2.47.3