diff options
author | Volker Lendecke <vl@samba.org> | 2010-07-25 13:19:34 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-07-25 22:29:42 +0200 |
commit | ce3dfd777f8f2da4cb08f6c91a465e647b84a8f1 (patch) | |
tree | 0c00641b84697f6401f65af91ac26ef82e958cbf /source3/torture | |
parent | b04eba165e45bafbe813f93b9e133dc489d2fe2e (diff) | |
download | samba-ce3dfd777f8f2da4cb08f6c91a465e647b84a8f1.tar.gz samba-ce3dfd777f8f2da4cb08f6c91a465e647b84a8f1.tar.xz samba-ce3dfd777f8f2da4cb08f6c91a465e647b84a8f1.zip |
s3: cli_qpathinfo->cli_qpathinfo1
Diffstat (limited to 'source3/torture')
-rw-r--r-- | source3/torture/nbio.c | 2 | ||||
-rw-r--r-- | source3/torture/torture.c | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/source3/torture/nbio.c b/source3/torture/nbio.c index 054806811bd..f69e4c3a2b4 100644 --- a/source3/torture/nbio.c +++ b/source3/torture/nbio.c @@ -245,7 +245,7 @@ void nb_rename(const char *oldname, const char *newname) void nb_qpathinfo(const char *fname) { - cli_qpathinfo(c, fname, NULL, NULL, NULL, NULL, NULL); + cli_qpathinfo1(c, fname, NULL, NULL, NULL, NULL, NULL); } void nb_qfileinfo(int fnum) diff --git a/source3/torture/torture.c b/source3/torture/torture.c index 696aaa3769e..be9cfccf98f 100644 --- a/source3/torture/torture.c +++ b/source3/torture/torture.c @@ -2868,7 +2868,7 @@ static bool run_trans2test(int dummy) } cli_close(cli, fnum); - if (!cli_qpathinfo(cli, fname, &c_time, &a_time, &m_time, &size, NULL)) { + if (!cli_qpathinfo1(cli, fname, &c_time, &a_time, &m_time, &size, NULL)) { printf("ERROR: qpathinfo failed (%s)\n", cli_errstr(cli)); correct = False; } else { @@ -5959,9 +5959,9 @@ static bool run_mangle1(int dummy) } cli_close(cli, fnum); - if (!cli_qpathinfo(cli, alt_name, &change_time, &access_time, + if (!cli_qpathinfo1(cli, alt_name, &change_time, &access_time, &write_time, &size, &mode)) { - d_printf("cli_qpathinfo(%s) failed: %s\n", alt_name, + d_printf("cli_qpathinfo1(%s) failed: %s\n", alt_name, cli_errstr(cli)); return false; } @@ -6485,7 +6485,7 @@ static bool run_streamerror(int dummy) return false; } - cli_qpathinfo(cli, streamname, &change_time, &access_time, &write_time, + cli_qpathinfo1(cli, streamname, &change_time, &access_time, &write_time, &size, &mode); status = cli_nt_error(cli); |