[openssh-commits] [openssh] branch master updated: upstream: Shell compatibility fix.

git+noreply at mindrot.org git+noreply at mindrot.org
Fri Dec 5 19:34:05 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 89a67a04e upstream: Shell compatibility fix.
89a67a04e is described below

commit 89a67a04e581423cdc443f2597cb1e2c7d8cc50f
Author: dtucker at openbsd.org <dtucker at openbsd.org>
AuthorDate: Fri Dec 5 08:09:34 2025 +0000

    upstream: Shell compatibility fix.
    
    OpenBSD-Regress-ID: bceaeb267d49c13e4a797c42e93b8f0cdb14dbd7
---
 regress/multiplex.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/regress/multiplex.sh b/regress/multiplex.sh
index f093588c5..172b182c8 100644
--- a/regress/multiplex.sh
+++ b/regress/multiplex.sh
@@ -1,4 +1,4 @@
-#	$OpenBSD: multiplex.sh,v 1.38 2025/12/05 06:55:22 dtucker Exp $
+#	$OpenBSD: multiplex.sh,v 1.39 2025/12/05 08:09:34 dtucker Exp $
 #	Placed in the Public Domain.
 
 CTL=${SSH_REGRESS_TMP}/ctl-sock
@@ -184,7 +184,7 @@ rm -f $OBJ/unix-1.fwd
 verbose "test $tid: cmd conninfo"
 conninfo=`${SSH} -F $OBJ/ssh_config -S $CTL -Oconninfo otherhost` \
      || fail "request remote forward failed"
-if echo "$conninfo" | ! egrep -- "-> 127.0.0.1:$port" >/dev/null; then
+if ! echo "$conninfo" | egrep -- "-> 127.0.0.1:$port" >/dev/null; then
        fail "conninfo"
 fi
 

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


More information about the openssh-commits mailing list