From 9844dd5f795ab4c2aa3ec1b684494a131efa50b8 Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Fri, 10 Mar 2023 16:12:52 +0100 Subject: [PATCH] kex: Clarify the comment Signed-off-by: Jakub Jelen Reviewed-by: Norbert Pocs Reviewed-by: Andrew Bartlett --- src/kex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kex.c b/src/kex.c index 2959a962..5fac4714 100644 --- a/src/kex.c +++ b/src/kex.c @@ -402,7 +402,7 @@ SSH_PACKET_CALLBACK(ssh_packet_kexinit) str = NULL; } - /* copy the server kex info into an array of strings */ + /* copy the peer kex info into an array of strings */ if (server_kex) { for (i = 0; i < SSH_KEX_METHODS; i++) { session->next_crypto->client_kex.methods[i] = strings[i];