[openssh-commits] [openssh] branch master updated: upstream: Append a newline, otherwise some sed's won't output anything.
git+noreply at mindrot.org
git+noreply at mindrot.org
Sat Dec 6 18:47:33 AEDT 2025
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
The following commit(s) were added to refs/heads/master by this push:
new ab164f671 upstream: Append a newline, otherwise some sed's won't output anything.
ab164f671 is described below
commit ab164f671609a3a25cd0efcd967aff29144081bb
Author: dtucker at openbsd.org <dtucker at openbsd.org>
AuthorDate: Sat Dec 6 07:10:24 2025 +0000
upstream: Append a newline, otherwise some sed's won't output anything.
OpenBSD-Regress-ID: 507cb8c36bb7fc338f60a55bf7040f479536b3f7
---
regress/test-exec.sh | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/regress/test-exec.sh b/regress/test-exec.sh
index 20297f22e..b391dbc82 100644
--- a/regress/test-exec.sh
+++ b/regress/test-exec.sh
@@ -1,4 +1,4 @@
-# $OpenBSD: test-exec.sh,v 1.136 2025/12/05 06:55:22 dtucker Exp $
+# $OpenBSD: test-exec.sh,v 1.137 2025/12/06 07:10:24 dtucker Exp $
# Placed in the Public Domain.
#SUDO=sudo
@@ -912,7 +912,7 @@ start_sshd ()
enable_all_kexes_in_sshd ()
{
- kexs=`$SSH -Q KexAlgorithms | tr '\n' , | sed 's/,$//'`
+ kexs=`$SSH -Q KexAlgorithms | (tr '\n' ,; echo) | sed 's/,$//'`
echo KexAlgorithms $kexs >>$OBJ/sshd_config
}
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list