summaryrefslogtreecommitdiff
path: root/kex.c
diff options
context:
space:
mode:
Diffstat (limited to 'kex.c')
-rw-r--r--kex.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/kex.c b/kex.c
index 148cfee80..ca5aae3e4 100644
--- a/kex.c
+++ b/kex.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: kex.c,v 1.82 2009/10/24 11:13:54 andreas Exp $ */ 1/* $OpenBSD: kex.c,v 1.83 2010/08/31 09:58:37 djm 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 *
@@ -98,7 +98,7 @@ kex_buf2prop(Buffer *raw, int *first_kex_follows)
98 buffer_get_char(&b); 98 buffer_get_char(&b);
99 /* extract kex init proposal strings */ 99 /* extract kex init proposal strings */
100 for (i = 0; i < PROPOSAL_MAX; i++) { 100 for (i = 0; i < PROPOSAL_MAX; i++) {
101 proposal[i] = buffer_get_string(&b,NULL); 101 proposal[i] = buffer_get_cstring(&b,NULL);
102 debug2("kex_parse_kexinit: %s", proposal[i]); 102 debug2("kex_parse_kexinit: %s", proposal[i]);
103 } 103 }
104 /* first kex follows / reserved */ 104 /* first kex follows / reserved */