summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-keygen.c
diff options
context:
space:
mode:
authormarkus <markus@openbsd.org>2002-02-24 19:14:59 +0000
committermarkus <markus@openbsd.org>2002-02-24 19:14:59 +0000
commit46a655d6003f6c6242f3cb343879e1d4479217fc (patch)
treed62b4cb60e1816bf6e49d8c53b0201cc9ec4681a /usr.bin/ssh/ssh-keygen.c
parentProper screenblank semantics (diff)
downloadwireguard-openbsd-46a655d6003f6c6242f3cb343879e1d4479217fc.tar.xz
wireguard-openbsd-46a655d6003f6c6242f3cb343879e1d4479217fc.zip
signed vs. unsigned: make size arguments u_int, ok stevesk@
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r--usr.bin/ssh/ssh-keygen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c
index c70d06bda57..e2403f3fcbf 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.92 2002/02/16 20:40:08 stevesk Exp $");
+RCSID("$OpenBSD: ssh-keygen.c,v 1.93 2002/02/24 19:14:59 markus Exp $");
#include <openssl/evp.h>
#include <openssl/pem.h>
@@ -192,7 +192,7 @@ buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
}
static Key *
-do_convert_private_ssh2_from_blob(u_char *blob, int blen)
+do_convert_private_ssh2_from_blob(u_char *blob, u_int blen)
{
Buffer b;
Key *key = NULL;