aboutsummaryrefslogtreecommitdiff
path: root/debianutils/start_stop_daemon.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-07-01 10:05:12 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-07-01 10:05:12 +0000
commit148f67af9dac56db4703fb40677630ef559edb57 (patch)
tree5d7902f5d4d6519ea4fc171c982432f496d36b8c /debianutils/start_stop_daemon.c
parent7987a1844b2fdf2e8086d1e723fbcfab20defb96 (diff)
downloadbusybox-148f67af9dac56db4703fb40677630ef559edb57.tar.gz
ssd: fix missed + in prev commit
Diffstat (limited to 'debianutils/start_stop_daemon.c')
-rw-r--r--debianutils/start_stop_daemon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c
index e082b5cca..459fb77e0 100644
--- a/debianutils/start_stop_daemon.c
+++ b/debianutils/start_stop_daemon.c
@@ -418,7 +418,7 @@ int start_stop_daemon_main(int argc ATTRIBUTE_UNUSED, char **argv)
/* Redirect stdio to /dev/null, close extra FDs.
* We do not actually daemonize because of DAEMON_ONLY_SANITIZE */
bb_daemonize_or_rexec(DAEMON_DEVNULL_STDIO
- DAEMON_CLOSE_EXTRA_FDS
+ + DAEMON_CLOSE_EXTRA_FDS
+ DAEMON_ONLY_SANITIZE,
NULL /* argv, unused */ );
#endif