From c5c02accb74c80d4d8db6adc35528fcd58cd709a Mon Sep 17 00:00:00 2001 From: Pete Dietl Date: Thu, 31 Dec 2020 15:55:19 -0800 Subject: [PATCH] * src/job.c (child_execute_job): Update gnulib find_in_given_path() Copyright-paperwork-exempt: yes --- src/job.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/job.c b/src/job.c index d6e28d3a..ee59b95b 100644 --- a/src/job.c +++ b/src/job.c @@ -2391,7 +2391,7 @@ child_execute_job (struct childbase *child, int good_stdin, char **argv) } } - cmd = (char *)find_in_given_path (argv[0], p, 0); + cmd = (char *)find_in_given_path (argv[0], p, NULL, 0); } if (!cmd)