From 39b7de2da600432479e8bb33cfda38e86c7f59a7 Mon Sep 17 00:00:00 2001 From: deraadt Date: Mon, 20 Mar 2006 18:14:02 +0000 Subject: sprinkle u_int throughout pty subsystem, ok markus --- usr.bin/ssh/serverloop.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'usr.bin/ssh/serverloop.c') 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(); -- cgit v1.2.3-59-g8ed1b