diff options
Diffstat (limited to 'runit/runsvdir.c')
-rw-r--r-- | runit/runsvdir.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runit/runsvdir.c b/runit/runsvdir.c index 2f54cfe..cce2c5d 100644 --- a/runit/runsvdir.c +++ b/runit/runsvdir.c @@ -191,7 +191,7 @@ static int setup_log(void) coe(logpipe[0]); ndelay_on(logpipe[0]); ndelay_on(logpipe[1]); - if (fd_copy(2, logpipe[1]) == -1) { + if (dup2(logpipe[1], 2) == -1) { warnx("cannot set filedescriptor for log"); return -1; } |