diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-11-22 16:35:56 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-11-22 16:35:56 +0100 |
commit | 03eb6eba436ca6198e5346ebb9d22a30d2f527a4 (patch) | |
tree | e795bfb384fdc57bfa3f6008f58c8c0140af52a2 /util-linux/mdev.c | |
parent | cb143b9793a8a17a753a215ddfe42a57490c65f7 (diff) |
mdev: clear LOGMODE_STDIO only directly before daemonizing
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/mdev.c')
-rw-r--r-- | util-linux/mdev.c | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/util-linux/mdev.c b/util-linux/mdev.c index 2cf98b1a4..9a8c14456 100644 --- a/util-linux/mdev.c +++ b/util-linux/mdev.c @@ -1279,21 +1279,17 @@ int mdev_main(int argc UNUSED_PARAM, char **argv) #if ENABLE_FEATURE_MDEV_DAEMON if (opt & MDEV_OPT_DAEMON) { - int fd; - - /* there is no point in write()ing to /dev/null */ - if (!(opt & MDEV_OPT_FOREGROUND)) - logmode &= ~LOGMODE_STDIO; - - /* - * Daemon mode listening on uevent netlink socket. Fork away + /* Daemon mode listening on uevent netlink socket. Fork away * after initial scan so that caller can be sure everything * is up-to-date when mdev process returns. */ - fd = daemon_init(temp); + int fd = daemon_init(temp); - if (!(opt & MDEV_OPT_FOREGROUND)) + if (!(opt & MDEV_OPT_FOREGROUND)) { + /* there is no point in logging to /dev/null */ + logmode &= ~LOGMODE_STDIO; bb_daemonize_or_rexec(0, argv); + } daemon_loop(temp, fd); } |