aboutsummaryrefslogtreecommitdiff
path: root/networking/isrv_identd.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/isrv_identd.c')
-rw-r--r--networking/isrv_identd.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/networking/isrv_identd.c b/networking/isrv_identd.c
index f9ab0b2c0..c230c7ec3 100644
--- a/networking/isrv_identd.c
+++ b/networking/isrv_identd.c
@@ -112,7 +112,9 @@ int fakeidentd_main(int argc, char **argv)
112 bogouser = argv[optind]; 112 bogouser = argv[optind];
113 113
114 /* Daemonize if no -f and no -i and no -w */ 114 /* Daemonize if no -f and no -i and no -w */
115 bb_sanitize_stdio_maybe_daemonize(!(opt & OPT_fiw)); 115 if (!(opt & OPT_fiw));
116 bb_daemonize_or_rexec(0, argv);
117
116 /* Where to log in inetd modes? "Classic" inetd 118 /* Where to log in inetd modes? "Classic" inetd
117 * probably has its stderr /dev/null'ed (we need log to syslog?), 119 * probably has its stderr /dev/null'ed (we need log to syslog?),
118 * but daemontools-like utilities usually expect that children 120 * but daemontools-like utilities usually expect that children