From 6aecd7a71281f970a93d1f29c1aff1de5dec9698 Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Sat, 15 Sep 2018 23:19:01 -0400 Subject: Call tls_error when tls_connect_socket fails --- irc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'irc.c') 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); -- cgit 1.4.1