summaryrefslogtreecommitdiff
path: root/kexgex.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2002-02-26 18:09:42 +0000
committerBen Lindstrom <mouring@eviladmin.org>2002-02-26 18:09:42 +0000
commit90fd814f90a5733584d8c2d877924469ac39d819 (patch)
tree900e828038a9ff6af55bde33c1137e1b37e61b6c /kexgex.c
parente45a2cb2b7da40f81d4dced5dcbd12a23fefd833 (diff)
- markus@cvs.openbsd.org 2002/02/24 19:14:59
[auth2.c authfd.c authfd.h authfile.c kexdh.c kexgex.c key.c key.h ssh-dss.c ssh-dss.h ssh-keygen.c ssh-rsa.c ssh-rsa.h sshconnect2.c] signed vs. unsigned: make size arguments u_int, ok stevesk@
Diffstat (limited to 'kexgex.c')
-rw-r--r--kexgex.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kexgex.c b/kexgex.c
index ac377aafc..06ed8e5a6 100644
--- a/kexgex.c
+++ b/kexgex.c
@@ -24,7 +24,7 @@
24 */ 24 */
25 25
26#include "includes.h" 26#include "includes.h"
27RCSID("$OpenBSD: kexgex.c,v 1.18 2002/02/23 17:59:02 markus Exp $"); 27RCSID("$OpenBSD: kexgex.c,v 1.19 2002/02/24 19:14:59 markus Exp $");
28 28
29#include <openssl/bn.h> 29#include <openssl/bn.h>
30 30
@@ -261,8 +261,8 @@ kexgex_server(Kex *kex)
261 Key *server_host_key; 261 Key *server_host_key;
262 DH *dh = dh; 262 DH *dh = dh;
263 u_char *kbuf, *hash, *signature = NULL, *server_host_key_blob = NULL; 263 u_char *kbuf, *hash, *signature = NULL, *server_host_key_blob = NULL;
264 u_int sbloblen, klen, kout; 264 u_int sbloblen, klen, kout, slen;
265 int min = -1, max = -1, nbits = -1, type, slen; 265 int min = -1, max = -1, nbits = -1, type;
266 266
267 if (kex->load_host_key == NULL) 267 if (kex->load_host_key == NULL)
268 fatal("Cannot load hostkey"); 268 fatal("Cannot load hostkey");