diff options
author | Volker Lendecke <vl@samba.org> | 2011-01-16 12:03:07 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-01-17 08:03:41 +0100 |
commit | 797c027cc898a88ec7873a3d34908b09eb2e68ce (patch) | |
tree | b89cb0e91fdcbf53a229569287bdea59dccc240d /source3/include | |
parent | 483e0447f5afaf6ef6d636447f7759117039ac06 (diff) | |
download | samba-797c027cc898a88ec7873a3d34908b09eb2e68ce.tar.gz samba-797c027cc898a88ec7873a3d34908b09eb2e68ce.tar.bz2 samba-797c027cc898a88ec7873a3d34908b09eb2e68ce.zip |
s3: Convert cli_get_fs_quota_info to cli_trans
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 62b7632205..cf16436dc2 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2260,7 +2260,8 @@ NTSTATUS cli_set_user_quota(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_STRUCT *pqt); NTSTATUS cli_list_user_quota(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_LIST **pqt_list); -bool cli_get_fs_quota_info(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_STRUCT *pqt); +NTSTATUS cli_get_fs_quota_info(struct cli_state *cli, int quota_fnum, + SMB_NTQUOTA_STRUCT *pqt); bool cli_set_fs_quota_info(struct cli_state *cli, int quota_fnum, SMB_NTQUOTA_STRUCT *pqt); void dump_ntquota(SMB_NTQUOTA_STRUCT *qt, bool _verbose, bool _numeric, void (*_sidtostring)(fstring str, struct dom_sid *sid, bool _numeric)); void dump_ntquota_list(SMB_NTQUOTA_LIST **qtl, bool _verbose, bool _numeric, void (*_sidtostring)(fstring str, struct dom_sid *sid, bool _numeric)); |