diff options
author | 2002-02-25 16:33:27 +0000 | |
---|---|---|
committer | 2002-02-25 16:33:27 +0000 | |
commit | e2e74eaa978ffcd9695edcd8a6e27ebcbc9a2452 (patch) | |
tree | fb586cf2d0172d48b104b8e12960f0e80d611688 /usr.bin/ssh/ssh-keygen.c | |
parent | fix mapping bug in serial console support, not yet working. (diff) | |
download | wireguard-openbsd-e2e74eaa978ffcd9695edcd8a6e27ebcbc9a2452.tar.xz wireguard-openbsd-e2e74eaa978ffcd9695edcd8a6e27ebcbc9a2452.zip |
more u_* fixes
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index e2403f3fcbf..961fad619bd 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keygen.c,v 1.93 2002/02/24 19:14:59 markus Exp $"); +RCSID("$OpenBSD: ssh-keygen.c,v 1.94 2002/02/25 16:33:27 markus Exp $"); #include <openssl/evp.h> #include <openssl/pem.h> @@ -146,7 +146,7 @@ static void do_convert_to_ssh2(struct passwd *pw) { Key *k; - int len; + u_int len; u_char *blob; struct stat st; |