summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kex.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/kex.c b/kex.c
index 50c7a0f9b..1e3bdad55 100644
--- a/kex.c
+++ b/kex.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: kex.c,v 1.118 2016/05/02 10:26:04 djm Exp $ */ 1/* $OpenBSD: kex.c,v 1.119 2016/09/06 09:14:05 markus Exp $ */
2/* 2/*
3 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved. 3 * Copyright (c) 2000, 2001 Markus Friedl. All rights reserved.
4 * 4 *
@@ -775,10 +775,8 @@ kex_choose_conf(struct ssh *ssh)
775 char *ext; 775 char *ext;
776 776
777 ext = match_list("ext-info-c", peer[PROPOSAL_KEX_ALGS], NULL); 777 ext = match_list("ext-info-c", peer[PROPOSAL_KEX_ALGS], NULL);
778 if (ext) { 778 kex->ext_info_c = (ext != NULL);
779 kex->ext_info_c = 1; 779 free(ext);
780 free(ext);
781 }
782 } 780 }
783 781
784 /* Algorithm Negotiation */ 782 /* Algorithm Negotiation */