diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-03-24 17:27:04 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-03-24 17:27:04 +0000 |
commit | 1067a7f27ff2145530048c62368800e31f53cfd7 (patch) | |
tree | c3979e63899a5ff016bcce8772ad6d7a2eaa666b /usr.bin | |
parent | 7e09899c09cbc23332596145b6514911248c9c17 (diff) |
typo; ok markus@
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/kexgex.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/kexgex.c b/usr.bin/ssh/kexgex.c index 7379e8d103e..2d4a5815315 100644 --- a/usr.bin/ssh/kexgex.c +++ b/usr.bin/ssh/kexgex.c @@ -24,7 +24,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: kexgex.c,v 1.21 2002/03/18 17:50:31 provos Exp $"); +RCSID("$OpenBSD: kexgex.c,v 1.22 2002/03/24 17:27:03 stevesk Exp $"); #include <openssl/bn.h> @@ -260,7 +260,7 @@ kexgex_server(Kex *kex) { BIGNUM *shared_secret = NULL, *dh_client_pub = NULL; Key *server_host_key; - DH *dh = dh; + DH *dh; u_char *kbuf, *hash, *signature = NULL, *server_host_key_blob = NULL; u_int sbloblen, klen, kout, slen; int min = -1, max = -1, nbits = -1, type; |