From 44add9952e5375f2858b26a2f676be49b70d839a Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 28 Jul 2010 20:09:48 +0200 Subject: s3: Fix cli_qpathinfo2 Does not fix the DIR_CREATETIME test, but it is definitely an error. --- source3/libsmb/clirap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/libsmb/clirap.c') 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); -- cgit