aboutsummaryrefslogtreecommitdiff
path: root/runit/runsvdir.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-02-06 01:20:12 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-02-06 01:20:12 +0000
commit1d76f439da81d3a05f0e0fdde3f81ec56fb20836 (patch)
treef3e2e2185d092f87843fe4bbc9d1098185a5bdbd /runit/runsvdir.c
parentcc24419e98853aede7c652edb3c1c79a9865bdda (diff)
downloadbusybox-w32-1d76f439da81d3a05f0e0fdde3f81ec56fb20836.tar.gz
busybox-w32-1d76f439da81d3a05f0e0fdde3f81ec56fb20836.tar.bz2
busybox-w32-1d76f439da81d3a05f0e0fdde3f81ec56fb20836.zip
EXEC_PREFER_APPLETS support by Gabriel L. Somlo <somlo@cmu.edu>
Diffstat (limited to 'runit/runsvdir.c')
-rw-r--r--runit/runsvdir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/runit/runsvdir.c b/runit/runsvdir.c
index d9053ad6a..2d2b5db31 100644
--- a/runit/runsvdir.c
+++ b/runit/runsvdir.c
@@ -73,7 +73,7 @@ static void runsv(int no, const char *name)
73 sig_uncatch(SIGHUP); 73 sig_uncatch(SIGHUP);
74 sig_uncatch(SIGTERM); 74 sig_uncatch(SIGTERM);
75 if (pgrp) setsid(); 75 if (pgrp) setsid();
76 execvp(prog[0], prog); 76 BB_EXECVP(prog[0], prog);
77 //pathexec_run(*prog, prog, (char* const*)environ); 77 //pathexec_run(*prog, prog, (char* const*)environ);
78 fatal2_cannot("start runsv ", name); 78 fatal2_cannot("start runsv ", name);
79 } 79 }