fix XFS quotas the macro changed from HAVE_XFS_QUOTA -> HAVE_XFS_QUOTAS
authorStefan Metzmacher <metze@samba.org>
Wed, 14 Jan 2004 02:51:41 +0000 (02:51 +0000)
committerStefan Metzmacher <metze@samba.org>
Wed, 14 Jan 2004 02:51:41 +0000 (02:51 +0000)
metze
(This used to be commit c73e845055163c1d814710fe4d9960c7f3587f12)

WHATSNEW.txt
source3/lib/sysquotas.c

index 7cbde39b788a10767dfa1e919768a0641d3beeaa..b41e0689707ca1c55d65854bbd127a1fcaa470cb 100644 (file)
@@ -39,7 +39,7 @@ o   Volker Lendecke <vl@samba.org>
 
     
 o   Stefan Metzmacher <metze@samba.org>
-
+    * Fix XFS quotas: HAVE_XFS_QUOTA -> HAVE_XFS_QUOTAS
 
 o   Tim Potter <tpot@samba.org>
 
index 6883444e005d6d3b47d43508ba8126321ba131bb..84ab3dd3d9b7228229203f9df54c6f5f5f9c2b91 100644 (file)
@@ -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}   
 };