commit a1aebf7f29c0d61ba32c965290bc8d8f3369b782 from: Stefan Sperling via: Thomas Adam date: Thu Apr 25 14:57:52 2024 UTC show path of got-fetch-http in execv error message commit - 78c53071b76cb7428ded1a0dc32b99949235feb4 commit + a1aebf7f29c0d61ba32c965290bc8d8f3369b782 blob - f8724db14c3b6c3e1210afb6c1393638e6fd2f4f blob + bcc0749bd0033076b6eb207ad5e08e9b459e3f56 --- lib/dial.c +++ lib/dial.c @@ -432,7 +432,7 @@ got_dial_http(pid_t *newpid, int *newfd, const char *h if (dup2(pfd[0], 1) == -1) err(1, "dup2"); if (execv(GOT_PATH_PROG_FETCH_HTTP, (char *const *)argv) == -1) - err(1, "execv"); + err(1, "execv %s", GOT_PATH_PROG_FETCH_HTTP); abort(); /* not reached */ } else { if (close(pfd[0]) == -1)