From 5ece386cdf84b692c1f28b5bf018ac619d067fde Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sun, 7 Apr 2019 13:01:03 +0100 Subject: Break new window and pane creation common code from various commands and window.c into a separate file spawn.c. --- server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server.c') diff --git a/server.c b/server.c index 04f907f3..41bc492e 100644 --- a/server.c +++ b/server.c @@ -296,7 +296,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. */ -- cgit