diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-11-03 17:31:32 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-11-03 18:02:03 +0100 |
commit | 4f25c779243ba38fce26dea51feafcf28492d79b (patch) | |
tree | 190afeb5e594bf3dc05296b4d7fe6bb28606f72b | |
parent | 7ed352b0c9f79b288cac850b4e50a9feffd7b069 (diff) | |
download | samba-4f25c779243ba38fce26dea51feafcf28492d79b.tar.gz samba-4f25c779243ba38fce26dea51feafcf28492d79b.tar.bz2 samba-4f25c779243ba38fce26dea51feafcf28492d79b.zip |
s3: proto.h: add missing sys_[g|s]et_quota_vfs() prototypes
metze
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 5ca5c7766f..254c33d075 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); |