changeset 8920:7bfbbfd2c32a HEAD

quota-fs: Compile fix for OSes without GRPQUOTA define.
author Timo Sirainen <tss@iki.fi>
date Mon, 06 Apr 2009 16:17:58 -0400
parents 4f506d955365
children d75ecf89760d
files src/plugins/quota/quota-fs.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/plugins/quota/quota-fs.c	Mon Apr 06 16:12:48 2009 -0400
+++ b/src/plugins/quota/quota-fs.c	Mon Apr 06 16:17:58 2009 -0400
@@ -397,7 +397,7 @@
 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;