From: dtucker@openbsd.org Date: Fri, 5 Dec 2025 08:09:34 +0000 (+0000) Subject: upstream: Shell compatibility fix. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89a67a04e581423cdc443f2597cb1e2c7d8cc50f;p=thirdparty%2Fopenssh-portable.git upstream: Shell compatibility fix. OpenBSD-Regress-ID: bceaeb267d49c13e4a797c42e93b8f0cdb14dbd7 --- 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