diff options
Diffstat (limited to 'kexecdhs.c')
-rw-r--r-- | kexecdhs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kexecdhs.c b/kexecdhs.c index c690feffe..45ac3f794 100644 --- a/kexecdhs.c +++ b/kexecdhs.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: kexecdhs.c,v 1.18 2018/12/27 03:25:25 djm Exp $ */ | 1 | /* $OpenBSD: kexecdhs.c,v 1.19 2019/01/19 21:43:56 djm Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2001 Markus Friedl. All rights reserved. |
4 | * Copyright (c) 2010 Damien Miller. All rights reserved. | 4 | * Copyright (c) 2010 Damien Miller. All rights reserved. |
@@ -168,8 +168,8 @@ input_kex_ecdh_init(int type, u_int32_t seq, struct ssh *ssh) | |||
168 | } | 168 | } |
169 | 169 | ||
170 | /* sign H */ | 170 | /* sign H */ |
171 | if ((r = kex->sign(server_host_private, server_host_public, &signature, | 171 | if ((r = kex->sign(ssh, server_host_private, server_host_public, |
172 | &slen, hash, hashlen, kex->hostkey_alg, ssh->compat)) < 0) | 172 | &signature, &slen, hash, hashlen, kex->hostkey_alg)) < 0) |
173 | goto out; | 173 | goto out; |
174 | 174 | ||
175 | /* destroy_sensitive_data(); */ | 175 | /* destroy_sensitive_data(); */ |