summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-01-14 02:55:07 +0000
committerStefan Metzmacher <metze@samba.org>2004-01-14 02:55:07 +0000
commit0ad32d58f79a76d7f88558a8ecea5707168be518 (patch)
treebd88ec1460c91ee1798ea15894f9b2448e1e2402
parent14fa51cfe5cb723850e7fa29fbcb3db5a8762d46 (diff)
downloadsamba-0ad32d58f79a76d7f88558a8ecea5707168be518.tar.gz
samba-0ad32d58f79a76d7f88558a8ecea5707168be518.tar.bz2
samba-0ad32d58f79a76d7f88558a8ecea5707168be518.zip
merge:
fix XFS quotas the macro changed from HAVE_XFS_QUOTA -> HAVE_XFS_QUOTAS metze (This used to be commit ae20cf0810b9bef3d460994d5bf5e820c01296f0)
-rw-r--r--source3/lib/sysquotas.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/sysquotas.c b/source3/lib/sysquotas.c
index 6883444e00..84ab3dd3d9 100644
--- a/source3/lib/sysquotas.c
+++ b/source3/lib/sysquotas.c
@@ -169,9 +169,9 @@ static struct {
int (*get_quota)(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
int (*set_quota)(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
} sys_quota_backends[] = {
-#ifdef HAVE_XFS_QUOTA
+#ifdef HAVE_XFS_QUOTAS
{"xfs", sys_get_xfs_quota, sys_set_xfs_quota},
-#endif /* HAVE_XFS_QUOTA */
+#endif /* HAVE_XFS_QUOTAS */
{NULL, NULL, NULL}
};