diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-09-25 17:47:42 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-09-25 17:47:42 +0000 |
commit | 804b8696a47b37076f8ae0e0b04dcba3e2d1fb7c (patch) | |
tree | 4afaebf2044cd1bb48e6d392c9ac313374ebd16c /server-msg.c | |
parent | b5d23ef38b6fb3483caeead4baf1f0c34aa1292c (diff) | |
download | rtmux-804b8696a47b37076f8ae0e0b04dcba3e2d1fb7c.tar.gz rtmux-804b8696a47b37076f8ae0e0b04dcba3e2d1fb7c.tar.bz2 rtmux-804b8696a47b37076f8ae0e0b04dcba3e2d1fb7c.zip |
Sync OpenBSD patchset 352:
Don't allow locked or suspended clients to limit the size of active clients.
Diffstat (limited to 'server-msg.c')
-rw-r--r-- | server-msg.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/server-msg.c b/server-msg.c index e258cc1f..35446723 100644 --- a/server-msg.c +++ b/server-msg.c @@ -1,4 +1,4 @@ -/* $Id: server-msg.c,v 1.89 2009-09-23 15:20:16 tcunha Exp $ */ +/* $Id: server-msg.c,v 1.90 2009-09-25 17:47:42 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -103,6 +103,7 @@ server_msg_dispatch(struct client *c) c->flags &= ~CLIENT_SUSPENDED; tty_start_tty(&c->tty); server_redraw_client(c); + recalculate_sizes(); server_activity = time(NULL); break; case MSG_ENVIRON: |