From: Stefan Metzmacher Date: Mon, 3 Nov 2008 16:31:32 +0000 (+0100) Subject: s3: proto.h: add missing sys_[g|s]et_quota_vfs() prototypes X-Git-Url: http://git.samba.org/samba.git/?p=abartlet%2Fsamba.git%2F.git;a=commitdiff_plain;h=4f25c779243ba38fce26dea51feafcf28492d79b s3: proto.h: add missing sys_[g|s]et_quota_vfs() prototypes metze --- diff --git a/source3/include/proto.h b/source3/include/proto.h index 5ca5c7766fd..254c33d0756 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -955,6 +955,9 @@ int sys_set_quota(const char *path, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DI /* The following definitions come from lib/sysquotas_*.c */ +int sys_get_vfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp); +int sys_set_vfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp); + int sys_get_xfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp); int sys_set_xfs_quota(const char *path, const char *bdev, enum SMB_QUOTA_TYPE qtype, unid_t id, SMB_DISK_QUOTA *dp);