aboutsummaryrefslogtreecommitdiff
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
parent7987a1844b2fdf2e8086d1e723fbcfab20defb96 (diff)
downloadbusybox-w32-148f67af9dac56db4703fb40677630ef559edb57.tar.gz
busybox-w32-148f67af9dac56db4703fb40677630ef559edb57.tar.bz2
busybox-w32-148f67af9dac56db4703fb40677630ef559edb57.zip
ssd: fix missed + in prev commit
-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)
418 /* Redirect stdio to /dev/null, close extra FDs. 418 /* Redirect stdio to /dev/null, close extra FDs.
419 * We do not actually daemonize because of DAEMON_ONLY_SANITIZE */ 419 * We do not actually daemonize because of DAEMON_ONLY_SANITIZE */
420 bb_daemonize_or_rexec(DAEMON_DEVNULL_STDIO 420 bb_daemonize_or_rexec(DAEMON_DEVNULL_STDIO
421 DAEMON_CLOSE_EXTRA_FDS 421 + DAEMON_CLOSE_EXTRA_FDS
422 + DAEMON_ONLY_SANITIZE, 422 + DAEMON_ONLY_SANITIZE,
423 NULL /* argv, unused */ ); 423 NULL /* argv, unused */ );
424#endif 424#endif