summaryrefslogtreecommitdiffstats
path: root/cmd-detach-client.c
diff options
context:
space:
mode:
authornicm <nicm>2017-04-19 14:00:28 +0000
committernicm <nicm>2017-04-19 14:00:28 +0000
commit53fde21bb85c37c35854069ec95377ecc86750ee (patch)
treec99c254393c6330a16d0337bd65403d10cb94cf2 /cmd-detach-client.c
parent689f4bfac22597e7fd2090373bdffe4df1ed5a34 (diff)
Add a suspend helper function, and do not allow detaching or suspending
while already doing so.
Diffstat (limited to 'cmd-detach-client.c')
-rw-r--r--cmd-detach-client.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd-detach-client.c b/cmd-detach-client.c
index a10fd42a..2e21f795 100644
--- a/cmd-detach-client.c
+++ b/cmd-detach-client.c
@@ -67,9 +67,7 @@ cmd_detach_client_exec(struct cmd *self, struct cmdq_item *item)
const char *cmd = args_get(args, 'E');
if (self->entry == &cmd_suspend_client_entry) {
- tty_stop_tty(&c->tty);
- c->flags |= CLIENT_SUSPENDED;
- proc_send(c->peer, MSG_SUSPEND, -1, NULL, 0);
+ server_client_suspend(c);
return (CMD_RETURN_NORMAL);
}