summary refs log tree commit diff
path: root/irc.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2018-09-15 23:19:01 -0400
committerJune McEnroe <june@causal.agency>2018-09-15 23:19:01 -0400
commit6aecd7a71281f970a93d1f29c1aff1de5dec9698 (patch)
treef7a6f5008b70f5693d75110090d96db5b0d07f34 /irc.c
parentTry successive getaddrinfo results (diff)
downloadcatgirl-6aecd7a71281f970a93d1f29c1aff1de5dec9698.tar.gz
catgirl-6aecd7a71281f970a93d1f29c1aff1de5dec9698.zip
Call tls_error when tls_connect_socket fails
Diffstat (limited to '')
-rw-r--r--irc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc.c b/irc.c
index 3a55432..6754e16 100644
--- a/irc.c
+++ b/irc.c
@@ -86,7 +86,7 @@ int ircConnect(
 	if (error) err(EX_IOERR, "fcntl");
 
 	error = tls_connect_socket(client, sock, host);
-	if (error) err(EX_PROTOCOL, "tls_connect");
+	if (error) errx(EX_PROTOCOL, "tls_connect: %s", tls_error(client));
 
 	if (webPass) webirc(webPass);
 	if (pass) ircFmt("PASS :%s\r\n", pass);