From 4c12626c8e3491570b395d68380543e10c98ad33 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Mon, 1 Aug 2011 20:52:18 +0200 Subject: umask: change default umask to 0022 just to be sure, and set it explicitly in all binaries, in order to make sure it is set when started from the terminal --- src/remount-api-vfs.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/remount-api-vfs.c') diff --git a/src/remount-api-vfs.c b/src/remount-api-vfs.c index 5b1872833a..8bbc021dc4 100644 --- a/src/remount-api-vfs.c +++ b/src/remount-api-vfs.c @@ -52,6 +52,8 @@ int main(int argc, char *argv[]) { log_parse_environment(); log_open(); + umask(0022); + if (!(f = setmntent("/etc/fstab", "r"))) { log_error("Failed to open /etc/fstab: %m"); goto finish; -- cgit v1.2.3-54-g00ecf