aboutsummaryrefslogtreecommitdiff
path: root/server.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-08-14 21:17:54 +0000
committerTiago Cunha <tcunha@gmx.com>2009-08-14 21:17:54 +0000
commit5cc971facd30171a03267faf2ca9a875df824b0f (patch)
tree949894dd8a1eb7c7a515a4bf5594b373d780bc33 /server.c
parentb402cef338e863ffe503f2fcdce3fb44d879efbf (diff)
downloadrtmux-5cc971facd30171a03267faf2ca9a875df824b0f.tar.gz
rtmux-5cc971facd30171a03267faf2ca9a875df824b0f.tar.bz2
rtmux-5cc971facd30171a03267faf2ca9a875df824b0f.zip
Sync OpenBSD patchset 244:
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server.c b/server.c
index 7a6f146a..2134ea26 100644
--- a/server.c
+++ b/server.c
@@ -1,4 +1,4 @@
-/* $Id: server.c,v 1.167 2009-08-14 21:04:04 tcunha Exp $ */
+/* $Id: server.c,v 1.168 2009-08-14 21:17:54 tcunha Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -907,7 +907,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);