From f959dd44a015ba0a844f85e7e0896e8c46e6e5a3 Mon Sep 17 00:00:00 2001 From: Gregor Beck Date: Mon, 14 Oct 2013 11:44:36 +0200 Subject: client: use cli_qpathinfo3 for allinfo Signed-off-by: Gregor Beck Reviewed-by: Stefan Metzmacher Reviewed-by: Jeremy Allison --- source3/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/client/client.c') diff --git a/source3/client/client.c b/source3/client/client.c index 6e1c87023f..2ed47c4b09 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1721,7 +1721,7 @@ static int do_allinfo(const char *name) } d_printf("altname: %s\n", altname); - status = cli_qpathinfo2(cli, name, &b_time, &a_time, &m_time, &c_time, + status = cli_qpathinfo3(cli, name, &b_time, &a_time, &m_time, &c_time, &size, &mode, NULL); if (!NT_STATUS_IS_OK(status)) { d_printf("%s getting pathinfo for %s\n", nt_errstr(status), @@ -1799,7 +1799,7 @@ static int do_allinfo(const char *name) d_printf("%s\n", snapshots[i]); snap_name = talloc_asprintf(talloc_tos(), "%s%s", snapshots[i], name); - status = cli_qpathinfo2(cli, snap_name, &b_time, &a_time, + status = cli_qpathinfo3(cli, snap_name, &b_time, &a_time, &m_time, &c_time, &size, NULL, NULL); if (!NT_STATUS_IS_OK(status)) { -- cgit