commit c81e62facd90605e6943771013604302d659a8af
parent 4710bc9f42827fe8a81c3fc3b67d5dcb0dcfb250
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Thu, 20 Nov 2025 00:21:00 +0100
enable TLS over UNIX domain socket as well
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ii.c b/ii.c
@@ -889,7 +889,7 @@ main(int argc, char *argv[])
else
ircfd = tcpopen(host, service, af);
- if (usetls && !uds) {
+ if (usetls) {
if (tls_init() < 0)
die("%s: tls_init: %s\n", strerror(errno));
if ((tlscfg = tls_config_new()) == NULL)