summaryrefslogtreecommitdiff
path: root/ssh-keygen.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2003-09-22 21:05:50 +1000
committerDarren Tucker <dtucker@zip.com.au>2003-09-22 21:05:50 +1000
commitc0815c927e177f27b1bcd6370e4c2b10caf95efe (patch)
treece3ca9f4f2a30ef0281b095dd01ef6c66454a8f1 /ssh-keygen.c
parentfb16b2411eda857cd358dc4c9c63b66edc217a51 (diff)
- 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.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c
index e74d3cd37..5b7bc400a 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -12,7 +12,7 @@
12 */ 12 */
13 13
14#include "includes.h" 14#include "includes.h"
15RCSID("$OpenBSD: ssh-keygen.c,v 1.108 2003/08/14 16:08:58 markus Exp $"); 15RCSID("$OpenBSD: ssh-keygen.c,v 1.109 2003/09/18 13:02:21 miod Exp $");
16 16
17#include <openssl/evp.h> 17#include <openssl/evp.h>
18#include <openssl/pem.h> 18#include <openssl/pem.h>
@@ -191,8 +191,8 @@ do_convert_to_ssh2(struct passwd *pw)
191static void 191static void
192buffer_get_bignum_bits(Buffer *b, BIGNUM *value) 192buffer_get_bignum_bits(Buffer *b, BIGNUM *value)
193{ 193{
194 int bits = buffer_get_int(b); 194 u_int bits = buffer_get_int(b);
195 int bytes = (bits + 7) / 8; 195 u_int bytes = (bits + 7) / 8;
196 196
197 if (buffer_len(b) < bytes) 197 if (buffer_len(b) < bytes)
198 fatal("buffer_get_bignum_bits: input buffer too small: " 198 fatal("buffer_get_bignum_bits: input buffer too small: "