diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-08-09 00:37:19 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2023-08-09 00:37:19 +0000 |
commit | 589d0d4040c7d13afd779f734fe91f8e372a9c07 (patch) | |
tree | a1bb09adcb51e92733db4441f9613f2e9c039622 /src/tls/s6-tlsclient.c | |
parent | eb54ce73503085fca8af147c166b3755a567d930 (diff) | |
download | s6-networking-589d0d4040c7d13afd779f734fe91f8e372a9c07.tar.xz |
Fix s6-tlsserver tcpaccess invocation condition
Also fix s6-tlsclient storage reservation
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'src/tls/s6-tlsclient.c')
-rw-r--r-- | src/tls/s6-tlsclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tls/s6-tlsclient.c b/src/tls/s6-tlsclient.c index 987e713..261c8be 100644 --- a/src/tls/s6-tlsclient.c +++ b/src/tls/s6-tlsclient.c @@ -133,7 +133,7 @@ int main (int argc, char const *const *argv) size_t pos = 0 ; unsigned int m = 0 ; char fmt[UINT_FMT * 4 + UINT16_FMT + IP46_FMT] ; - char const *newargv[29 + argc] ; + char const *newargv[31 + argc] ; newargv[m++] = S6_NETWORKING_BINPREFIX "s6-tcpclient" ; if (o.verbosity != 1) newargv[m++] = o.verbosity ? "-v" : "-q" ; if (o.flag4) newargv[m++] = "-4" ; |