From 932ab0c299c89ae63a35f8b0a59e0c03b9c5ec3f Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 27 Nov 2009 12:44:33 +0100 Subject: s3: client "newer" does not look at the create timestamp --- source3/client/client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/client/client.c') diff --git a/source3/client/client.c b/source3/client/client.c index 187fd88743..1990ae801b 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -3439,7 +3439,7 @@ static int cmd_newer(void) SMB_STRUCT_STAT sbuf; ok = next_token_talloc(ctx, &cmd_ptr,&buf,NULL); - if (ok && (sys_stat(buf, &sbuf, lp_fake_dir_create_times()) == 0)) { + if (ok && (sys_stat(buf, &sbuf, false) == 0)) { newer_than = convert_timespec_to_time_t(sbuf.st_ex_mtime); DEBUG(1,("Getting files newer than %s", time_to_asc(newer_than))); -- cgit