Files
tb 9060ff22b3 git: revert zombie prevention commit, ok kn (maintainer)
This commit causes a hang in devel/jujutsu regress tests on OpenBSD and
doesn't work in mksh as the upstream revert explains in detail:

https://github.com/git/git/commit/8b44deebaf02246b40c267c06bf0c74ef71df292
2026-05-15 16:34:34 +00:00

24 lines
709 B
Plaintext

https://github.com/git/git/commit/8b44deebaf02246b40c267c06bf0c74ef71df292
Index: connect.c
--- connect.c.orig
+++ connect.c
@@ -1054,8 +1054,6 @@ static struct child_process *git_proxy_connect(int fd[
strvec_push(&proxy->args, port);
proxy->in = -1;
proxy->out = -1;
- proxy->clean_on_exit = 1;
- proxy->wait_after_clean = 1;
if (start_command(proxy))
die(_("cannot start proxy %s"), git_proxy_command);
fd[0] = proxy->out; /* read from proxy stdout */
@@ -1517,8 +1515,6 @@ struct child_process *git_connect(int fd[2], const cha
}
strvec_push(&conn->args, cmd.buf);
- conn->clean_on_exit = 1;
- conn->wait_after_clean = 1;
if (start_command(conn))
die(_("unable to fork"));