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