diff options
author | Denis Vlasenko | 2007-09-30 23:50:48 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-09-30 23:50:48 +0000 |
commit | 96e1b38586e80a0f014038bf4fdf4689c668fbd6 (patch) | |
tree | d7f6a7866700601598cfcc006b7dcb6cb4a7c07e /runit/runsvdir.c | |
parent | deabacdf91c6d1c3cfcdb4cd06780807193de81d (diff) | |
download | busybox-96e1b38586e80a0f014038bf4fdf4689c668fbd6.zip busybox-96e1b38586e80a0f014038bf4fdf4689c668fbd6.tar.gz |
introduce and use close_on_exec_on(fd). -50 bytes.
Diffstat (limited to 'runit/runsvdir.c')
-rw-r--r-- | runit/runsvdir.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/runit/runsvdir.c b/runit/runsvdir.c index 8d25923..924f771 100644 --- a/runit/runsvdir.c +++ b/runit/runsvdir.c @@ -190,8 +190,8 @@ static int setup_log(void) warnx("cannot create pipe for log"); return -1; } - coe(logpipe[1]); - coe(logpipe[0]); + close_on_exec_on(logpipe[1]); + close_on_exec_on(logpipe[0]); ndelay_on(logpipe[0]); ndelay_on(logpipe[1]); if (dup2(logpipe[1], 2) == -1) { @@ -245,7 +245,7 @@ int runsvdir_main(int argc, char **argv) curdir = open_read("."); if (curdir == -1) fatal2_cannot("open current directory", ""); - coe(curdir); + close_on_exec_on(curdir); stampcheck = monotonic_sec(); |