diff options
author | dtucker <dtucker> | 2003-09-22 11:05:50 +0000 |
---|---|---|
committer | dtucker <dtucker> | 2003-09-22 11:05:50 +0000 |
commit | 6727af7992e1c80c51771dc3a6b1b2afe486b86f (patch) | |
tree | 253c2b616ab21784a7ab4e155e147bc201fd3a30 /ssh-keygen.c | |
parent | a2f31a3a2e9b5035a66f5918db5821cc1ad29dcf (diff) | |
download | openssh-6727af7992e1c80c51771dc3a6b1b2afe486b86f.tar.gz |
- miod@cvs.openbsd.org 2003/09/18 13:02:21
[authfd.c bufaux.c dh.c mac.c ssh-keygen.c]
A few signedness fixes for harmless situations; markus@ ok
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r-- | ssh-keygen.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c index e74d3cd3..5b7bc400 100644 --- a/ssh-keygen.c +++ b/ssh-keygen.c @@ -12,7 +12,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keygen.c,v 1.108 2003/08/14 16:08:58 markus Exp $"); +RCSID("$OpenBSD: ssh-keygen.c,v 1.109 2003/09/18 13:02:21 miod Exp $"); #include <openssl/evp.h> #include <openssl/pem.h> @@ -191,8 +191,8 @@ do_convert_to_ssh2(struct passwd *pw) static void buffer_get_bignum_bits(Buffer *b, BIGNUM *value) { - int bits = buffer_get_int(b); - int bytes = (bits + 7) / 8; + u_int bits = buffer_get_int(b); + u_int bytes = (bits + 7) / 8; if (buffer_len(b) < bytes) fatal("buffer_get_bignum_bits: input buffer too small: " |