From: Pádraig Brady Date: Sat, 27 Aug 2022 16:54:42 +0000 (+0100) Subject: maint: remove FIXME comment from timeout.c X-Git-Tag: v9.2~159 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c88f08f9b6d7b509ece19b746d57b73133ab6618;p=thirdparty%2Fcoreutils.git 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. --- 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;