From d4ee0012925815e069dd9996241703a7e9bd0338 Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Tue, 9 Jun 2009 15:35:38 +0000 Subject: - Fix Savannah bug #18124 - Fix Savannah bug #17521 - Fix Savannah bug #16401 - Fix Savannah bug #16469 - Fix Savannah bug #16473 --- job.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'job.c') diff --git a/job.c b/job.c index 6cbfd31..3ed27bf 100644 --- a/job.c +++ b/job.c @@ -551,7 +551,7 @@ reap_children (int block, int err) pid = WAIT_NOHANG (&status); else #endif - pid = wait (&status); + EINTRLOOP(pid, wait (&status)); #endif /* !VMS */ } else @@ -2028,7 +2028,7 @@ exec_command (char **argv, char **envp) { int i; fprintf(stderr, - _("process_easy() failed failed to launch process (e=%ld)\n"), + _("process_easy() failed to launch process (e=%ld)\n"), process_last_err(hPID)); for (i = 0; argv[i]; i++) fprintf(stderr, "%s ", argv[i]); -- cgit v1.2.3