aboutsummaryrefslogtreecommitdiff
path: root/debianutils
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-04-12 18:09:26 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2006-04-12 18:09:26 +0000
commit2c99851181a652358aa3ca58ef38c57e46ae02e4 (patch)
tree6893f7992748817b64ec66947adc2ca40e13fb8e /debianutils
parentdac7ff15b7d32deeeef3d9665744fc5774c21d70 (diff)
downloadbusybox-w32-2c99851181a652358aa3ca58ef38c57e46ae02e4.tar.gz
busybox-w32-2c99851181a652358aa3ca58ef38c57e46ae02e4.tar.bz2
busybox-w32-2c99851181a652358aa3ca58ef38c57e46ae02e4.zip
- patch from Denis Vlasenko to add and use bb_xdaemon()
Diffstat (limited to 'debianutils')
-rw-r--r--debianutils/start_stop_daemon.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/debianutils/start_stop_daemon.c b/debianutils/start_stop_daemon.c
index 5b689740e..b44a23b4b 100644
--- a/debianutils/start_stop_daemon.c
+++ b/debianutils/start_stop_daemon.c
@@ -275,8 +275,7 @@ start_stop_daemon_main(int argc, char **argv)
275 } 275 }
276 *--argv = startas; 276 *--argv = startas;
277 if (opt & SSD_OPT_BACKGROUND) { 277 if (opt & SSD_OPT_BACKGROUND) {
278 if (daemon(0, 0) == -1) 278 bb_xdaemon(0, 0);
279 bb_perror_msg_and_die ("unable to fork");
280 setsid(); 279 setsid();
281 } 280 }
282 if (opt & SSD_OPT_MAKEPID) { 281 if (opt & SSD_OPT_MAKEPID) {