aboutsummaryrefslogtreecommitdiff
path: root/runit/runsv.c
diff options
context:
space:
mode:
Diffstat (limited to 'runit/runsv.c')
-rw-r--r--runit/runsv.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/runit/runsv.c b/runit/runsv.c
index 20f849528..f70b51390 100644
--- a/runit/runsv.c
+++ b/runit/runsv.c
@@ -313,14 +313,11 @@ static void startservice(struct svdir *s)
/* child */
if (haslog) {
if (s->islog) {
- if (dup2(logpipe[0], 0) == -1)
- fatal_cannot("setup filedescriptor for ./log/run");
+ xdup2(logpipe[0], 0);
close(logpipe[1]);
- if (chdir("./log") == -1)
- fatal_cannot("change directory to ./log");
+ xchdir("./log");
} else {
- if (dup2(logpipe[1], 1) == -1)
- fatal_cannot("setup filedescriptor for ./run");
+ xdup2(logpipe[1], 1);
close(logpipe[0]);
}
}