From 3232d728126ce27324190f962461651c6a2632b4 Mon Sep 17 00:00:00 2001 From: Jakub Jelen Date: Mon, 9 Feb 2026 12:22:57 +0100 Subject: [PATCH] fix typos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub Jelen Reviewed-by: Pavol Žáčik Reviewed-by: Sahana Prasad --- src/config.c | 2 +- src/connector.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.c b/src/config.c index 0216e453..eceaba61 100644 --- a/src/config.c +++ b/src/config.c @@ -513,7 +513,7 @@ ssh_config_parse_proxy_jump(ssh_session session, const char *s, bool do_parsing) } if (do_parsing) { - /* Store the whole string in sesion */ + /* Store the whole string in session */ SAFE_FREE(session->opts.proxy_jumps_str); session->opts.proxy_jumps_str = strdup(s); if (session->opts.proxy_jumps_str == NULL) { diff --git a/src/connector.c b/src/connector.c index a2629ef0..2cdfea47 100644 --- a/src/connector.c +++ b/src/connector.c @@ -314,7 +314,7 @@ static void ssh_connector_reset_pollevents(ssh_connector connector) * This should be called after some data is successfully read from * connector's input and written to connector's output. * - * @param[in, out] connector Connector for which the io operation occured. + * @param[in, out] connector Connector for which the io operation occurred. * * @warning This does not consider the case when the io indicated failure *