summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/serverloop.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2006-03-20 18:14:02 +0000
committerderaadt <deraadt@openbsd.org>2006-03-20 18:14:02 +0000
commit39b7de2da600432479e8bb33cfda38e86c7f59a7 (patch)
tree60f0172c7c669551b3f6a9bc6cd95624138b391f /usr.bin/ssh/serverloop.c
parentmake `rcs -a' use cvs_strsplit() for easiness; OK joris@. (diff)
downloadwireguard-openbsd-39b7de2da600432479e8bb33cfda38e86c7f59a7.tar.xz
wireguard-openbsd-39b7de2da600432479e8bb33cfda38e86c7f59a7.zip
sprinkle u_int throughout pty subsystem, ok markus
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-rw-r--r--usr.bin/ssh/serverloop.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c
index 26adf31a266..0f73a9fecf4 100644
--- a/usr.bin/ssh/serverloop.c
+++ b/usr.bin/ssh/serverloop.c
@@ -878,10 +878,10 @@ server_input_eof(int type, u_int32_t seq, void *ctxt)
static void
server_input_window_size(int type, u_int32_t seq, void *ctxt)
{
- int row = packet_get_int();
- int col = packet_get_int();
- int xpixel = packet_get_int();
- int ypixel = packet_get_int();
+ u_int row = packet_get_int();
+ u_int col = packet_get_int();
+ u_int xpixel = packet_get_int();
+ u_int ypixel = packet_get_int();
debug("Window change received.");
packet_check_eom();