summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-07-23 14:20:29 -0400
committerJune McEnroe <june@causal.agency>2020-07-23 14:20:29 -0400
commit5873d8b5a72f11fc30b11d0e4a7de7541757036d (patch)
treeabe4cf007eb878f4380530d84bc6d916a1eae649
parentInitialize numHot, numWarm (diff)
downloadcatgirl-5873d8b5a72f11fc30b11d0e4a7de7541757036d.tar.gz
catgirl-5873d8b5a72f11fc30b11d0e4a7de7541757036d.zip
Remove tls_close error handling
It seems that sometimes tls_close returns non-zero but tls_error returns
a null string... We're exiting anyway, so just ignore it.
-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);
 }