diff --git a/server.c b/server.c index 56323b24..402263ab 100644 --- a/server.c +++ b/server.c @@ -108,11 +108,9 @@ int server(const struct cli_parsed *parsed) sigemptyset(&sig.sa_mask); // Block the same signals during handler sigaddset(&sig.sa_mask, SIGHUP); sigaddset(&sig.sa_mask, SIGINT); - sigaddset(&sig.sa_mask, SIGQUIT); sig.sa_flags = 0; sigaction(SIGHUP, &sig, NULL); sigaction(SIGINT, &sig, NULL); - sigaction(SIGQUIT, &sig, NULL); /* Record PID to advertise that the server is now running */ char filename[1024];