diff options
author | 2019-04-17 14:37:48 +0000 | |
---|---|---|
committer | 2019-04-17 14:37:48 +0000 | |
commit | c26c4f79767981d9e7cfd9040b1fbb03d77cf042 (patch) | |
tree | 902aef886172968a1fc96b65e65f5c4f8a7d12f6 /usr.bin/tmux/server.c | |
parent | retguard-cookie-in-register is slightly unstable on arm64, so surgically (diff) | |
download | wireguard-openbsd-c26c4f79767981d9e7cfd9040b1fbb03d77cf042.tar.xz wireguard-openbsd-c26c4f79767981d9e7cfd9040b1fbb03d77cf042.zip |
Break new window and pane creation common code from various commands and
window.c into a separate file spawn.c.
Diffstat (limited to 'usr.bin/tmux/server.c')
-rw-r--r-- | usr.bin/tmux/server.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/server.c b/usr.bin/tmux/server.c index d4756e5e49d..96d248e4d6b 100644 --- a/usr.bin/tmux/server.c +++ b/usr.bin/tmux/server.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server.c,v 1.183 2018/08/23 15:45:05 nicm Exp $ */ +/* $OpenBSD: server.c,v 1.184 2019/04/17 14:37:48 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -297,7 +297,7 @@ server_send_exit(void) } RB_FOREACH_SAFE(s, sessions, &sessions, s1) - session_destroy(s, __func__); + session_destroy(s, 1, __func__); } /* Update socket execute permissions based on whether sessions are attached. */ |