diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2020-12-02 11:23:49 +0000 |
---|---|---|
committer | Laurent Bercot <ska-skaware@skarnet.org> | 2020-12-02 11:23:49 +0000 |
commit | ffb0a8fd2045bb8f7f097905cb9d0814803c6060 (patch) | |
tree | c012cdeff13f07176058ed70168292246f722815 /src/supervision/s6-supervise.c | |
parent | 8873c303fefaed17f6777989f929612a99675a00 (diff) | |
download | s6-ffb0a8fd2045bb8f7f097905cb9d0814803c6060.tar.xz |
Fix lock permissions
Diffstat (limited to 'src/supervision/s6-supervise.c')
-rw-r--r-- | src/supervision/s6-supervise.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/supervision/s6-supervise.c b/src/supervision/s6-supervise.c index 112ccea..a8be37d 100644 --- a/src/supervision/s6-supervise.c +++ b/src/supervision/s6-supervise.c @@ -7,9 +7,9 @@ #include <string.h> #include <strings.h> #include <errno.h> -#include <fcntl.h> #include <limits.h> #include <signal.h> +#include <fcntl.h> #include <sys/stat.h> #include <sys/wait.h> @@ -142,9 +142,9 @@ static void bail (void) static void closethem (void) { - fd_close(0) ; - fd_close(1) ; - fd_close(2) ; + close(0) ; + close(1) ; + close(2) ; open_readb("/dev/null") ; open_write("/dev/null") ; ndelay_off(1) ; open_write("/dev/null") ; ndelay_off(2) ; @@ -685,7 +685,7 @@ static inline int control_init (void) } trymkdir(S6_SUPERVISE_CTLDIR) ; - fdlck = open(LCK, O_WRONLY | O_NONBLOCK | O_CREAT | O_CLOEXEC, 0600) ; + fdlck = open3(LCK, O_WRONLY | O_NONBLOCK | O_CREAT | O_CLOEXEC, 0644) ; if (fdlck < 0) strerr_diefu1sys(111, "open " LCK) ; r = fd_lock(fdlck, 1, 1) ; if (r < 0) strerr_diefu1sys(111, "lock " LCK) ; |