summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ssh.c b/ssh.c
index 3615d1c40..550218444 100644
--- a/ssh.c
+++ b/ssh.c
@@ -889,10 +889,10 @@ ssh_session(void)
889 /* Store window size in the packet. */ 889 /* Store window size in the packet. */
890 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0) 890 if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) < 0)
891 memset(&ws, 0, sizeof(ws)); 891 memset(&ws, 0, sizeof(ws));
892 packet_put_int(ws.ws_row); 892 packet_put_int((u_int)ws.ws_row);
893 packet_put_int(ws.ws_col); 893 packet_put_int((u_int)ws.ws_col);
894 packet_put_int(ws.ws_xpixel); 894 packet_put_int((u_int)ws.ws_xpixel);
895 packet_put_int(ws.ws_ypixel); 895 packet_put_int((u_int)ws.ws_ypixel);
896 896
897 /* Store tty modes in the packet. */ 897 /* Store tty modes in the packet. */
898 tty_make_modes(fileno(stdin), NULL); 898 tty_make_modes(fileno(stdin), NULL);