[openssh-commits] [openssh] 03/07: upstream: typos: s/hex/kex/ in error messages

git+noreply at mindrot.org git+noreply at mindrot.org
Fri Dec 4 13:43:56 AEDT 2020


This is an automated email from the git hooks/post-receive script.

djm pushed a commit to branch master
in repository openssh.

commit ac0364b85e66eb53da2f9618f699ba6bd195ceea
Author: djm at openbsd.org <djm at openbsd.org>
Date:   Fri Dec 4 02:27:08 2020 +0000

    upstream: typos: s/hex/kex/ in error messages
    
    OpenBSD-Commit-ID: 43a026c9571dd779ec148de1829cf5a6b6651905
---
 kex.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/kex.c b/kex.c
index 2cf3f73b..b9f45dd7 100644
--- a/kex.c
+++ b/kex.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kex.c,v 1.160 2020/10/18 11:32:01 djm Exp $ */
+/* $OpenBSD: kex.c,v 1.161 2020/12/04 02:27:08 djm Exp $ */
 /*
  * Copyright (c) 2000, 2001 Markus Friedl.  All rights reserved.
  *
@@ -535,7 +535,7 @@ kex_send_kexinit(struct ssh *ssh)
 	int r;
 
 	if (kex == NULL) {
-		error_f("no hex");
+		error_f("no kex");
 		return SSH_ERR_INTERNAL_ERROR;
 	}
 	if (kex->flags & KEX_INIT_SENT)
@@ -577,7 +577,7 @@ kex_input_kexinit(int type, u_int32_t seq, struct ssh *ssh)
 
 	debug("SSH2_MSG_KEXINIT received");
 	if (kex == NULL) {
-		error_f("no hex");
+		error_f("no kex");
 		return SSH_ERR_INTERNAL_ERROR;
 	}
 	ssh_dispatch_set(ssh, SSH2_MSG_KEXINIT, NULL);

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list