From c88f08f9b6d7b509ece19b746d57b73133ab6618 Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?= Date: Sat, 27 Aug 2022 17:54:42 +0100 Subject: [PATCH] maint: remove FIXME comment from timeout.c * src/timeout.c: We shouldn't hardcode `sh -c` as users can specify that if needed, so remove the comment. --- src/timeout.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/timeout.c b/src/timeout.c index bf300dabb2..06635ab3a2 100644 --- a/src/timeout.c +++ b/src/timeout.c @@ -545,7 +545,7 @@ main (int argc, char **argv) signal (SIGTTIN, SIG_DFL); signal (SIGTTOU, SIG_DFL); - execvp (argv[0], argv); /* FIXME: should we use "sh -c" ... here? */ + execvp (argv[0], argv); /* exit like sh, env, nohup, ... */ int exit_status = errno == ENOENT ? EXIT_ENOENT : EXIT_CANNOT_INVOKE; -- 2.47.2