mirror of
https://github.com/openbsd/ports.git
synced 2026-06-18 07:24:23 +02:00
9060ff22b3
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
24 lines
709 B
Plaintext
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"));
|
|
|