From 33601b8632edf65af4d4ab787c5615ab5c6af6fb Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 27 Nov 2009 13:17:05 +0100 Subject: s3: Pass fake_dir_create_times down to file_exist_stat, none of the callers look at the mtime --- source3/client/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/client/client.c') diff --git a/source3/client/client.c b/source3/client/client.c index 1990ae801b..504b1dd9b3 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1745,7 +1745,7 @@ static int cmd_put(void) SMB_STRUCT_STAT st; /* allow '-' to represent stdin jdblair, 24.jun.98 */ - if (!file_exist_stat(lname,&st) && + if (!file_exist_stat(lname, &st, false) && (strcmp(lname,"-"))) { d_printf("%s does not exist\n",lname); return 1; @@ -3618,7 +3618,7 @@ static int cmd_reput(void) return 1; } - if (!file_exist_stat(local_name, &st)) { + if (!file_exist_stat(local_name, &st, false)) { d_printf("%s does not exist\n", local_name); return 1; } -- cgit