From e41e21b9d443930604092853b3bef4ef33759a13 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 27 Nov 2009 12:53:48 +0100 Subject: s3: "load_usershare_shares" only looks at the mode and uid --- source3/param/loadparm.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 9e50daa971..ce235edf5b 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -8900,8 +8900,7 @@ int load_usershare_shares(void) return lp_numservices(); } - if (sys_stat(usersharepath, &sbuf, lp_fake_dir_create_times()) - != 0) { + if (sys_stat(usersharepath, &sbuf, false) != 0) { DEBUG(0,("load_usershare_shares: stat of %s failed. %s\n", usersharepath, strerror(errno) )); return ret; -- cgit