diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-07-22 17:32:57 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-07-22 17:32:57 +0000 |
commit | ff456862fd76a0f2f7cf6ba6d941d21b5563c4ad (patch) | |
tree | 61a5c862a2ecb90b3d3cb5f5c5e2d297ac6df307 /usr.bin/ssh | |
parent | 0b1395a6f28e2e73a8fab3386ac2318a0cd1a993 (diff) |
u_int here; ok provos@
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/monitor.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/monitor.c b/usr.bin/ssh/monitor.c index 7f5cfc786fb..7c4f3c0de79 100644 --- a/usr.bin/ssh/monitor.c +++ b/usr.bin/ssh/monitor.c @@ -25,7 +25,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: monitor.c,v 1.21 2002/06/27 10:35:47 deraadt Exp $"); +RCSID("$OpenBSD: monitor.c,v 1.22 2002/07/22 17:32:56 stevesk Exp $"); #include <openssl/dh.h> @@ -568,7 +568,8 @@ mm_answer_authpassword(int socket, Buffer *m) { static int call_count; char *passwd; - int authenticated, plen; + int authenticated; + u_int plen; passwd = buffer_get_string(m, &plen); /* Only authenticate if the context is valid */ |