summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--bin/quick.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/quick.c b/bin/quick.c
index 064b81d8..d6361aad 100644
--- a/bin/quick.c
+++ b/bin/quick.c
@@ -153,6 +153,7 @@ int main(int argc, char *argv[]) {
 	setenv("SCRIPT_NAME", "/", 1);
 
 	for (int sock; 0 <= (sock = accept(server, NULL, NULL)); close(sock)) {
+		fcntl(sock, F_SETFD, FD_CLOEXEC);
 		request(sock, &argv[optind]);
 	}
 	err(EX_IOERR, "accept");