summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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);