From: Tom Gundersen Date: Wed, 17 Jun 2015 15:43:11 +0000 (+0200) Subject: udevd: daemon - connect /dev/null to std{in,out,err} in debug mode X-Git-Tag: v221~44^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=40e749b59ba49fb97c1f45859debe2a82bc9c9ef;p=thirdparty%2Fsystemd.git udevd: daemon - connect /dev/null to std{in,out,err} in debug mode This is essentially a revert of 5c67cf2 and fixes issue #190. --- diff --git a/src/udev/udevd.c b/src/udev/udevd.c index 5ce11606c92..11f1f6372ea 100644 --- a/src/udev/udevd.c +++ b/src/udev/udevd.c @@ -43,6 +43,7 @@ #include "sd-daemon.h" #include "sd-event.h" +#include "terminal-util.h" #include "signal-util.h" #include "event-util.h" #include "netlink-util.h" @@ -1687,6 +1688,10 @@ int main(int argc, char *argv[]) { log_info("starting version " VERSION); + /* connect /dev/null to stdin, stdout, stderr */ + if (log_get_max_level() < LOG_DEBUG) + (void) make_null_stdio(); + pid = fork(); switch (pid) { case 0: