diff options
author | 2002-06-24 14:33:27 +0000 | |
---|---|---|
committer | 2002-06-24 14:33:27 +0000 | |
commit | b45464d1edd935ea5a11fae54cfb71e5d4f52e31 (patch) | |
tree | 31aba30fea7c51c37ad8f1b897e91000612f8b15 /usr.bin/ssh/clientloop.c | |
parent | the socket name contains ssh-agent's ppid; via mpech@ from form@ (diff) | |
download | wireguard-openbsd-b45464d1edd935ea5a11fae54cfb71e5d4f52e31.tar.xz wireguard-openbsd-b45464d1edd935ea5a11fae54cfb71e5d4f52e31.zip |
move channel counter to u_int
Diffstat (limited to 'usr.bin/ssh/clientloop.c')
-rw-r--r-- | usr.bin/ssh/clientloop.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c index 75d24ace2b4..cd2eab77a9c 100644 --- a/usr.bin/ssh/clientloop.c +++ b/usr.bin/ssh/clientloop.c @@ -59,7 +59,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: clientloop.c,v 1.101 2002/06/09 13:32:01 markus Exp $"); +RCSID("$OpenBSD: clientloop.c,v 1.102 2002/06/24 14:33:27 markus Exp $"); #include "ssh.h" #include "ssh1.h" @@ -1208,10 +1208,8 @@ client_input_channel_open(int type, u_int32_t seq, void *ctxt) { Channel *c = NULL; char *ctype; - u_int len; int rchan; - int rmaxpack; - int rwindow; + u_int rmaxpack, rwindow, len; ctype = packet_get_string(&len); rchan = packet_get_int(); |