From 482237919b80fb4846460e00ebfa326b22ee6207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Tue, 27 Jun 2017 08:49:22 +0200 Subject: [PATCH] Fix length of MSG_RESIZE packet We no longer send the complete struct winsize. --- client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.c b/client.c index 2c2192b..f26bc8f 100644 --- a/client.c +++ b/client.c @@ -79,7 +79,7 @@ static int client_mainloop(void) { Packet pkt = { .type = MSG_RESIZE, .u = { .ws = { .rows = ws.ws_row, .cols = ws.ws_col } }, - .len = sizeof(ws), + .len = sizeof(pkt.u.ws), }; if (client_send_packet(&pkt)) client.need_resize = false;