]> andersk Git - openssh.git/blobdiff - serverloop.c
- deraadt@cvs.openbsd.org 2006/03/20 18:14:02
[openssh.git] / serverloop.c
index 816215e05bfcda57612290aaabd7cc2846d2326c..3bc0c5a765558461a213a38b2943cca0d7ef8822 100644 (file)
@@ -880,10 +880,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();
This page took 0.031438 seconds and 4 git commands to generate.