aboutsummaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-08-11 19:32:25 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-08-11 19:32:25 +0000
commitff65e3754565f1d878c70257e96f6aea09c1c90e (patch)
treec51546af494bfa93dbcc6b38cc09626a3bb7d5bd /server.c
parentf0635717b3e840a72a962a2014b18d84fac4c83a (diff)
downloadrtmux-ff65e3754565f1d878c70257e96f6aea09c1c90e.tar.gz
rtmux-ff65e3754565f1d878c70257e96f6aea09c1c90e.tar.bz2
rtmux-ff65e3754565f1d878c70257e96f6aea09c1c90e.zip
Drop the no_stop argument to tty_close and tty_free in favour of a flag in the
tty struct.
Diffstat (limited to 'server.c')
-rw-r--r--server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server.c b/server.c
index acaf5207..15a5fc94 100644
--- a/server.c
+++ b/server.c
@@ -902,7 +902,7 @@ server_lost_client(struct client *c)
ARRAY_SET(&clients, i, NULL);
}
- tty_free(&c->tty, c->flags & CLIENT_SUSPENDED);
+ tty_free(&c->tty);
screen_free(&c->status);