From 8cdf602330eea2869b562d2ac578dacb769a2f89 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: Andreas Schneider --- src/kex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kex.c b/src/kex.c index 1b9d0abe..b5f3e8cc 100644 --- a/src/kex.c +++ b/src/kex.c @@ -413,7 +413,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];