diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/timeout.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/timeout.c b/src/timeout.c index 37bed3c09..8b506f0c9 100644 --- a/src/timeout.c +++ b/src/timeout.c @@ -284,8 +284,8 @@ main (int argc, char **argv) monitored_pid = fork (); if (monitored_pid == -1) { - perror ("fork"); - return errno; + error (0, errno, _("fork system call failed")); + return EXIT_CANCELED; } else if (monitored_pid == 0) { /* child */ @@ -299,7 +299,7 @@ main (int argc, char **argv) /* exit like sh, env, nohup, ... */ exit_status = (errno == ENOENT ? EXIT_ENOENT : EXIT_CANNOT_INVOKE); - perror (argv[0]); + error (0, errno, _("cannot run command %s"), quote (argv[0])); return exit_status; } else |