summaryrefslogtreecommitdiff
path: root/kexdhs.c
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2019-01-19 21:43:56 +0000
committerDamien Miller <djm@mindrot.org>2019-01-20 09:45:18 +1100
commit04c091fc199f17dacf8921df0a06634b454e2722 (patch)
tree76b75b5cf39f940bfc418fa7fe6e9ae3dc5c2569 /kexdhs.c
parentec00f918b8ad90295044266c433340a8adc93452 (diff)
upstream: remove last references to active_state
with & ok markus@ OpenBSD-Commit-ID: 78619a50ea7e4ca2f3b54d4658b3227277490ba2
Diffstat (limited to 'kexdhs.c')
-rw-r--r--kexdhs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/kexdhs.c b/kexdhs.c
index adf70babd..c8be1b2f7 100644
--- a/kexdhs.c
+++ b/kexdhs.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: kexdhs.c,v 1.29 2018/12/27 03:25:25 djm Exp $ */ 1/* $OpenBSD: kexdhs.c,v 1.30 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 * 4 *
@@ -189,8 +189,8 @@ input_kex_dh_init(int type, u_int32_t seq, struct ssh *ssh)
189 } 189 }
190 190
191 /* sign H */ 191 /* sign H */
192 if ((r = kex->sign(server_host_private, server_host_public, &signature, 192 if ((r = kex->sign(ssh, server_host_private, server_host_public,
193 &slen, hash, hashlen, kex->hostkey_alg, ssh->compat)) < 0) 193 &signature, &slen, hash, hashlen, kex->hostkey_alg)) < 0)
194 goto out; 194 goto out;
195 195
196 /* destroy_sensitive_data(); */ 196 /* destroy_sensitive_data(); */