summaryrefslogtreecommitdiff
path: root/source3/libsmb/clirap.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-07-28 20:09:48 +0200
committerVolker Lendecke <vl@samba.org>2010-07-28 20:14:25 +0200
commit44add9952e5375f2858b26a2f676be49b70d839a (patch)
tree5af22a1e2a4946065f2eab907d20e8315b9df2c8 /source3/libsmb/clirap.c
parentc4b3c9ec0f2efa937529160999f7e44bcad3591f (diff)
downloadsamba-44add9952e5375f2858b26a2f676be49b70d839a.tar.gz
samba-44add9952e5375f2858b26a2f676be49b70d839a.tar.bz2
samba-44add9952e5375f2858b26a2f676be49b70d839a.zip
s3: Fix cli_qpathinfo2
Does not fix the DIR_CREATETIME test, but it is definitely an error.
Diffstat (limited to 'source3/libsmb/clirap.c')
-rw-r--r--source3/libsmb/clirap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clirap.c b/source3/libsmb/clirap.c
index 56d6375973..df378941db 100644
--- a/source3/libsmb/clirap.c
+++ b/source3/libsmb/clirap.c
@@ -886,7 +886,7 @@ NTSTATUS cli_qpathinfo2(struct cli_state *cli, const char *fname,
if (!tevent_req_poll_ntstatus(req, ev, &status)) {
goto fail;
}
- status = cli_qpathinfo2_recv(req, change_time, access_time,
+ status = cli_qpathinfo2_recv(req, create_time, access_time,
write_time, change_time, size, mode, ino);
fail:
TALLOC_FREE(frame);