commit f044c8414b8ab21062f8866d8336fa7c8bf21897 from: Stefan Sperling date: Mon Oct 24 10:37:16 2022 UTC fix detection of SIGTERM in tog; this signal was accidentally being ignored ok jamsek commit - 74ef8aae7e2bc5e35fe53a09877d13f1bc5ccaf5 commit + f044c8414b8ab21062f8866d8336fa7c8bf21897 blob - d326fe7596a743dfd15243b75371bab5fd61911e blob + d78689fb84f34bff3df940c48dc3345304d01098 --- tog/tog.c +++ tog/tog.c @@ -795,7 +795,7 @@ static int tog_fatal_signal_received(void) { return (tog_sigpipe_received || - tog_sigint_received || tog_sigint_received); + tog_sigint_received || tog_sigterm_received); } static const struct got_error *