From 8acb89c8c4c7a65dcd29719778cb759468738a6a Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Fri, 13 Sep 2019 19:56:20 -0400 Subject: [PATCH] * src/job.c (child_execute_job): Use newer gnulib findprog version. --- src/job.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/job.c b/src/job.c index 92d48bc5..67194d1f 100644 --- a/src/job.c +++ b/src/job.c @@ -2371,7 +2371,7 @@ child_execute_job (struct childbase *child, int good_stdin, char **argv) break; } - cmd = (char *)find_in_given_path (argv[0], p); + cmd = (char *)find_in_given_path (argv[0], p, 0); } if (!cmd)