summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ingest.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/ingest.c b/ingest.c
index abb7451..3fb5e40 100644
--- a/ingest.c
+++ b/ingest.c
@@ -90,12 +90,15 @@ int main(void) {
 
 		if (fds[1].revents) {
 			int client = accept(server, NULL, NULL);
-			if (client < 0) err(EX_IOERR, "accept");
+			if (client < 0) continue;
 			fcntl(client, F_SETFL, O_NONBLOCK);
 
 			int yes = 1;
 			error = setsockopt(client, SOL_SOCKET, SO_NOSIGPIPE, &yes, sizeof(yes));
-			if (error) err(EX_IOERR, "setsockopt");
+			if (error) {
+				close(client);
+				continue;
+			}
 
 			// TODO: Send snapshot.
 
400'>2019-05-10Highlight yacc and lex files as CJune McEnroe Their %-prefixed directives should probably be highlighted Macro. 2019-05-10Use val instead of suboptargJune McEnroe suboptarg doesn't exist in GNU. Hopefully BSD getsubopt also sets val on failure? 2019-05-09Add Parable of the SowerJune McEnroe 2019-05-07Add bit without buildJune McEnroe Need to do some stuff in the Makefile for lex and yacc and generating HTML pages for it. 2019-05-04Fix MANDIR typoJune McEnroe 2019-05-04Move relay to binJune McEnroe