diff options
author | Volker Lendecke <vl@samba.org> | 2010-02-07 12:08:39 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-02-07 12:29:25 +0100 |
commit | 6e510b49c03be9caba4f587f3f6cec547841b0d7 (patch) | |
tree | 2f8e6dda074a0e30e0fcb2dbb55ff11cdbf750e8 /source3/include | |
parent | c73ffb728099e453110ffeb0e665811b9fcec34d (diff) | |
download | samba-6e510b49c03be9caba4f587f3f6cec547841b0d7.tar.gz samba-6e510b49c03be9caba4f587f3f6cec547841b0d7.tar.xz samba-6e510b49c03be9caba4f587f3f6cec547841b0d7.zip |
s3: Make cli_get_fs_volume_info() use 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 0660e77c732..0db536d7b90 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -2708,7 +2708,8 @@ struct tevent_req *cli_get_fs_attr_info_send(TALLOC_CTX *mem_ctx, struct cli_state *cli); NTSTATUS cli_get_fs_attr_info_recv(struct tevent_req *req, uint32_t *fs_attr); NTSTATUS cli_get_fs_attr_info(struct cli_state *cli, uint32_t *fs_attr); -bool cli_get_fs_volume_info(struct cli_state *cli, fstring volume_name, uint32 *pserial_number, time_t *pdate); +NTSTATUS cli_get_fs_volume_info(struct cli_state *cli, fstring volume_name, + uint32 *pserial_number, time_t *pdate); bool cli_get_fs_full_size_info(struct cli_state *cli, uint64_t *total_allocation_units, uint64_t *caller_allocation_units, |