summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorGregor Beck <gbeck@sernet.de>2013-10-14 11:44:36 +0200
committerKarolin Seeger <kseeger@samba.org>2014-04-04 21:05:34 +0200
commit4aa742a3d374b578df73594336c79bb49fe11d83 (patch)
tree9116c0ef5038ae17e30925ab7b9ce391515200bd /source3
parent0874ff20b91f62a09173d25bc899a348426c9fd4 (diff)
downloadsamba-4aa742a3d374b578df73594336c79bb49fe11d83.tar.gz
client: use cli_qpathinfo3 for allinfo
Signed-off-by: Gregor Beck <gbeck@sernet.de> Reviewed-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/client/client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c
index d0326c4b00..9d5cec90b1 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)) {