From 7e9c2c5df33c55f47000573245551b50043bc590 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 27 Nov 2009 12:52:31 +0100 Subject: [PATCH] s3: "usershare_exists" only looks at the mode and mtime --- source3/param/loadparm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index f42a70d0552..69debce3126 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -8793,7 +8793,7 @@ static bool usershare_exists(int iService, struct timespec *last_mod) return false; } - if (sys_lstat(fname, &lsbuf, lp_fake_dir_create_times()) != 0) { + if (sys_lstat(fname, &lsbuf, false) != 0) { SAFE_FREE(fname); return false; } -- 2.11.4.GIT