diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-11-12 10:58:36 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2023-11-12 10:58:36 +0000 |
commit | d8ca717da164c3e76ebb56c954d0a08544955601 (patch) | |
tree | 9bfa71e42e48a7f3be845676779301f32a05833e /src/tls/s6-tlsd-io.c | |
parent | e58d005e2a579cf51d191e8f53eea98fb5bda7aa (diff) | |
download | s6-networking-d8ca717da164c3e76ebb56c954d0a08544955601.tar.xz |
Fix sbearssl_run even more
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/tls/s6-tlsd-io.c')
-rw-r--r-- | src/tls/s6-tlsd-io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/s6-tlsd-io.c b/src/tls/s6-tlsd-io.c index 0aa19c9..fac2164 100644 --- a/src/tls/s6-tlsd-io.c +++ b/src/tls/s6-tlsd-io.c @@ -66,7 +66,7 @@ static inline void doit (int *fds, tain const *tto, uint32_t preoptions, uint32_ int main (int argc, char const *const *argv) { tain tto ; - int fds[4] = { 0, 1, 0, 1 } ; + int fds[4] = { [2] = 0, [3] = 1 } ; unsigned int verbosity = 1 ; unsigned int notif = 0 ; uint32_t preoptions = 0 ; |