summaryrefslogtreecommitdiff
path: root/src/tls/s6tls_io_spawn.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tls/s6tls_io_spawn.c')
-rw-r--r--src/tls/s6tls_io_spawn.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tls/s6tls_io_spawn.c b/src/tls/s6tls_io_spawn.c
index 8e26807..252ddb5 100644
--- a/src/tls/s6tls_io_spawn.c
+++ b/src/tls/s6tls_io_spawn.c
@@ -11,9 +11,9 @@ pid_t s6tls_io_spawn (char const *const *argv, int const p[4][2])
{
[0] = { .type = CSPAWN_FA_CLOSE, .x = { .fd = p[0][1] } },
[1] = { .type = CSPAWN_FA_CLOSE, .x = { .fd = p[1][0] } },
- [2] = { .type = CSPAWN_FA_CLOSE, .x = { .fd = p[2][1] } },
+ [2] = { .type = CSPAWN_FA_CLOSE, .x = { .fd = p[2][0] } },
[3] = { .type = CSPAWN_FA_MOVE, .x = { .fd2 = { [0] = 0, [1] = p[3][0] } } },
[4] = { .type = CSPAWN_FA_MOVE, .x = { .fd2 = { [0] = 1, [1] = p[3][1] } } }
} ;
- return cspawn(argv[0], argv, (char const *const *)environ, 0, fa, p[3][0] >= 0 ? 5 : 3) ;
+ return cspawn(argv[0], argv, (char const *const *)environ, 0, fa, 5) ;
}