From: Timo Sirainen Date: Mon, 6 Apr 2009 20:18:14 +0000 (-0400) Subject: quota-fs: Compile fix for OSes without GRPQUOTA define. X-Git-Tag: 2.0.alpha1~1024 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6dddf1d27c0f72756c790735d1dedde6591cc15d;p=thirdparty%2Fdovecot%2Fcore.git quota-fs: Compile fix for OSes without GRPQUOTA define. --HG-- branch : HEAD --- 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;