enable TLS over UNIX domain socket as well - ii - irc it, simple FIFO based irc client
(HTM) git clone git://git.suckless.org/ii
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit c81e62facd90605e6943771013604302d659a8af
(DIR) parent 4710bc9f42827fe8a81c3fc3b67d5dcb0dcfb250
(HTM) Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date: Thu, 20 Nov 2025 00:21:00 +0100
enable TLS over UNIX domain socket as well
Diffstat:
M ii.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) 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)