]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
quota-fs: Compile fix for OSes without GRPQUOTA define.
authorTimo Sirainen <tss@iki.fi>
Mon, 6 Apr 2009 20:18:14 +0000 (16:18 -0400)
committerTimo Sirainen <tss@iki.fi>
Mon, 6 Apr 2009 20:18:14 +0000 (16:18 -0400)
--HG--
branch : HEAD

src/plugins/quota/quota-fs.c

index cd4135c258958196380e15efc39c1eb8332896bc..f4b0989e5365b4c0f66a406ac8a9e3a0bfd9b872 100644 (file)
@@ -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;