diff options
author | 2018-03-08 08:09:10 +0000 | |
---|---|---|
committer | 2018-03-08 08:09:10 +0000 | |
commit | 49505a585a1f33133f638cc437963becee77e333 (patch) | |
tree | 023e8600ea7e2b5e3101ff04bfdf1d73c122a236 /usr.bin/tmux/cmd-run-shell.c | |
parent | Implement the VMWare vmbackup protocol using vfs_stall(). This lets you (diff) | |
download | wireguard-openbsd-49505a585a1f33133f638cc437963becee77e333.tar.xz wireguard-openbsd-49505a585a1f33133f638cc437963becee77e333.zip |
Add a missing client-detached hook when the server shuts down, and do
not exit until jobs started from run-shell/if-shell have finished (add a
job flags member and a flag to indicate other jobs). GitHub issue 1245.
Diffstat (limited to 'usr.bin/tmux/cmd-run-shell.c')
-rw-r--r-- | usr.bin/tmux/cmd-run-shell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-run-shell.c b/usr.bin/tmux/cmd-run-shell.c index bb80e2c95db..0950c81bd8b 100644 --- a/usr.bin/tmux/cmd-run-shell.c +++ b/usr.bin/tmux/cmd-run-shell.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-run-shell.c,v 1.51 2017/08/30 10:33:57 nicm Exp $ */ +/* $OpenBSD: cmd-run-shell.c,v 1.52 2018/03/08 08:09:10 nicm Exp $ */ /* * Copyright (c) 2009 Tiago Cunha <me@tiagocunha.org> @@ -111,7 +111,7 @@ cmd_run_shell_exec(struct cmd *self, struct cmdq_item *item) cdata->item = item; job_run(cdata->cmd, s, cwd, NULL, cmd_run_shell_callback, - cmd_run_shell_free, cdata); + cmd_run_shell_free, cdata, 0); if (args_has(args, 'b')) return (CMD_RETURN_NORMAL); |