diff options
author | June McEnroe <june@causal.agency> | 2020-02-13 01:01:23 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-13 01:01:23 -0500 |
commit | 0a772ff13908dc23ab957f168e0e3ef51ea755f1 (patch) | |
tree | 28ebe24d025a923e63235ded19f04e3728b246aa /chat.c | |
parent | Add sandman wrapper (diff) | |
download | catgirl-0a772ff13908dc23ab957f168e0e3ef51ea755f1.tar.gz catgirl-0a772ff13908dc23ab957f168e0e3ef51ea755f1.zip |
Explicitly close the TLS connection
Just to be nice.
Diffstat (limited to '')
-rw-r--r-- | chat.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chat.c b/chat.c index dbd2784..284302d 100644 --- a/chat.c +++ b/chat.c @@ -269,5 +269,6 @@ int main(int argc, char *argv[]) { }; handle(msg); + ircClose(); uiHide(); } |