diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-24 12:11:17 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-03-24 12:11:17 +0000 |
commit | 9067f13be067f39f6c8586926b190b7dee0def3d (patch) | |
tree | ff0a10f5f81fa0e1e719691c147309a9cc9bef46 /networking/dnsd.c | |
parent | 1b6fa4c57ced2ae89f51bdc073410c4be5384007 (diff) | |
download | busybox-w32-9067f13be067f39f6c8586926b190b7dee0def3d.tar.gz busybox-w32-9067f13be067f39f6c8586926b190b7dee0def3d.tar.bz2 busybox-w32-9067f13be067f39f6c8586926b190b7dee0def3d.zip |
NOMMU re-exec trick shuld not depend on existence of "don't daemonize"
option for every affected applet (and dnsd, for example, don't have one).
Thus rework re-exec support to not require it. Code got smaller too.
Diffstat (limited to 'networking/dnsd.c')
-rw-r--r-- | networking/dnsd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/dnsd.c b/networking/dnsd.c index 78722d6f6..fb0c56cce 100644 --- a/networking/dnsd.c +++ b/networking/dnsd.c | |||
@@ -357,8 +357,8 @@ int dnsd_main(int argc, char **argv) | |||
357 | if (OPT_daemon) { | 357 | if (OPT_daemon) { |
358 | //FIXME: NOMMU will NOT set LOGMODE_SYSLOG! | 358 | //FIXME: NOMMU will NOT set LOGMODE_SYSLOG! |
359 | #ifdef BB_NOMMU | 359 | #ifdef BB_NOMMU |
360 | /* reexec for vfork() do continue parent */ | 360 | if (!re_execed) |
361 | vfork_daemon_rexec(1, 0, argc, argv, "-d"); | 361 | vfork_daemon_rexec(1, 0, argv); |
362 | #else | 362 | #else |
363 | xdaemon(1, 0); | 363 | xdaemon(1, 0); |
364 | #endif | 364 | #endif |