summary refs log tree commit diff
path: root/irc.c
diff options
context:
space:
mode:
Diffstat (limited to 'irc.c')
-rw-r--r--irc.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/irc.c b/irc.c
index dce1358..63655ed 100644
--- a/irc.c
+++ b/irc.c
@@ -289,7 +289,6 @@ void ircRecv(void) {
 }
 
 void ircClose(void) {
-	int error = tls_close(client);
-	if (error) errx(EX_IOERR, "tls_close: %s", tls_error(client));
+	tls_close(client);
 	tls_free(client);
 }
>June McEnroe 2019-02-22Rename global tags with angle bracketsJune McEnroe 2019-02-22Show status window while connectingJune McEnroe 2019-02-22Reorganize UI code for the umpteenth timeJune McEnroe 2019-02-21Replace "view" with "window"June McEnroe 2019-02-21Remove ROT13June McEnroe 2019-02-21Clean up man pageJune McEnroe 2019-01-26Draw UI before connectingJune McEnroe 2019-01-25Avoid unused variable warnings with getyxJune McEnroe 2019-01-25Add GNU/Linux build instructionsJune McEnroe