From 59462f2e0102481bb9ac8f86e883a6de99259449 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 17 Jun 2013 17:25:41 -0700 Subject: winbindd and nmbd don't set their umask to zero on startup like smbd does. Fix this - we already control tightly what permissions are on the files we create. Ensure we don't get surprised. Signed-off-by: Jeremy Allison Reviewed-by: Michael Adam Autobuild-User(master): Michael Adam Autobuild-Date(master): Thu Jun 27 02:02:24 CEST 2013 on sn-devel-104 --- source3/nmbd/nmbd.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source3/nmbd') diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index 42e2b2f6ff..ec0e7d098f 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -808,6 +808,12 @@ static bool open_sockets(bool isdaemon, int port) talloc_enable_null_tracking(); frame = talloc_stackframe(); + /* + * We want total control over the permissions on created files, + * so set our umask to 0. + */ + umask(0); + setup_logging(argv[0], DEBUG_DEFAULT_STDOUT); load_case_tables(); -- cgit