diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-03-25 11:38:57 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-03-25 11:38:57 +0000 |
commit | 88b92df8492092fbbab37a3ddd2390e0eee2cb24 (patch) | |
tree | 708941b8ea65d6f3ecdb09f6169c62454b09cd8e | |
parent | e4c0730bf1e13ac256a58db7ee7a58c36c8980f4 (diff) | |
download | rtmux-88b92df8492092fbbab37a3ddd2390e0eee2cb24.tar.gz rtmux-88b92df8492092fbbab37a3ddd2390e0eee2cb24.tar.bz2 rtmux-88b92df8492092fbbab37a3ddd2390e0eee2cb24.zip |
We ignore SIGWINCH until ready, so send a MSG_RESIZE immediately when
becoming ready.
-rw-r--r-- | client.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -520,6 +520,7 @@ client_dispatch_wait(void *data) event_del(&client_stdin); client_attached = 1; + client_write_server(MSG_RESIZE, NULL, 0); break; case MSG_STDIN: if (datalen != 0) |