diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-28 01:50:38 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-06-28 01:50:38 +0000 |
commit | 751bfc71f484ab046eea6ca8b79b88f8d51d3ab8 (patch) | |
tree | 821d1e798c727bc41c25e166536b0cd3d2b8d8b2 /usr.bin | |
parent | 9215b59402084280a5ba360c255d9b1c963e44e5 (diff) |
use ssize_t
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/monitor_wrap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/monitor_wrap.c b/usr.bin/ssh/monitor_wrap.c index 1bfecadb3ab..24f4d99d7d4 100644 --- a/usr.bin/ssh/monitor_wrap.c +++ b/usr.bin/ssh/monitor_wrap.c @@ -25,7 +25,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: monitor_wrap.c,v 1.12 2002/06/26 15:00:32 deraadt Exp $"); +RCSID("$OpenBSD: monitor_wrap.c,v 1.13 2002/06/28 01:50:37 deraadt Exp $"); #include <openssl/bn.h> #include <openssl/dh.h> @@ -62,8 +62,8 @@ extern Buffer input, output; void mm_request_send(int socket, enum monitor_reqtype type, Buffer *m) { - u_char buf[5]; u_int mlen = buffer_len(m); + u_char buf[5]; debug3("%s entering: type %d", __func__, type); @@ -79,8 +79,8 @@ void mm_request_receive(int socket, Buffer *m) { u_char buf[4]; - ssize_t res; u_int msg_len; + ssize_t res; debug3("%s entering", __func__); |