summary refs log tree commit diff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--chat.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/chat.c b/chat.c
index 20a4290..239e390 100644
--- a/chat.c
+++ b/chat.c
@@ -460,6 +460,11 @@ static void clientRead(void) {
 
 	ssize_t size = tls_read(client.tls, buf + fill, sizeof(buf) - fill);
 	if (size < 0) errx(EX_IOERR, "tls_read: %s", tls_error(client.tls));
+	if (!size) {
+		// FIXME: Always endwin
+		endwin();
+		exit(EX_OK);
+	}
 	fill += size;
 
 	char *end, *line = buf;
with make testJune McEnroe 2020-04-05Add unscoop -n flag for checking regexpsJune McEnroe 2020-04-05Add Ban and Unban event typesJune McEnroe 2020-04-02Update styleJune McEnroe 2020-03-31Update unscoop catgirl matchersJune McEnroe 2020-03-31Fix writing verbose to stderrJune McEnroe 2020-03-02Include <>/-/* around nicks in scoop coloring 1.1June McEnroe 2020-03-02Replace .mk files with configure scriptJune McEnroe 2020-02-28Implement the causal.agency/consumer capabilityJune McEnroe 2020-02-22Include <>/-/* around nicks in coloringJune McEnroe 2020-02-22Use (almost) the full range of IRC colors for nicksJune McEnroe