mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
fix XFS quotas the macro changed from HAVE_XFS_QUOTA -> HAVE_XFS_QUOTAS
metze
(This used to be commit c73e845055
)
This commit is contained in:
parent
ade34c9ade
commit
2c1f07b66a
@ -39,7 +39,7 @@ o Volker Lendecke <vl@samba.org>
|
|||||||
|
|
||||||
|
|
||||||
o Stefan Metzmacher <metze@samba.org>
|
o Stefan Metzmacher <metze@samba.org>
|
||||||
|
* Fix XFS quotas: HAVE_XFS_QUOTA -> HAVE_XFS_QUOTAS
|
||||||
|
|
||||||
o Tim Potter <tpot@samba.org>
|
o Tim Potter <tpot@samba.org>
|
||||||
|
|
||||||
|
@ -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 (*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);
|
int (*set_quota)(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);
|
||||||
} sys_quota_backends[] = {
|
} sys_quota_backends[] = {
|
||||||
#ifdef HAVE_XFS_QUOTA
|
#ifdef HAVE_XFS_QUOTAS
|
||||||
{"xfs", sys_get_xfs_quota, sys_set_xfs_quota},
|
{"xfs", sys_get_xfs_quota, sys_set_xfs_quota},
|
||||||
#endif /* HAVE_XFS_QUOTA */
|
#endif /* HAVE_XFS_QUOTAS */
|
||||||
{NULL, NULL, NULL}
|
{NULL, NULL, NULL}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user