From 6e510b49c03be9caba4f587f3f6cec547841b0d7 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 7 Feb 2010 12:08:39 +0100 Subject: s3: Make cli_get_fs_volume_info() use cli_trans() --- source3/client/client.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'source3/client/client.c') diff --git a/source3/client/client.c b/source3/client/client.c index f177129dc7..1ceb3ab639 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -3376,9 +3376,12 @@ static int cmd_volume(void) fstring volname; uint32 serial_num; time_t create_date; + NTSTATUS status; - if (!cli_get_fs_volume_info(cli, volname, &serial_num, &create_date)) { - d_printf("Errr %s getting volume info\n",cli_errstr(cli)); + status = cli_get_fs_volume_info(cli, volname, &serial_num, + &create_date); + if (!NT_STATUS_IS_OK(status)) { + d_printf("Error %s getting volume info\n", nt_errstr(status)); return 1; } -- cgit