diff options
author | 2020-01-23 11:19:12 +0000 | |
---|---|---|
committer | 2020-01-23 11:19:12 +0000 | |
commit | 5d68d434c1323ff62c41317efe8d1bb2c6dc6d5a (patch) | |
tree | ab11f846a15bec76871f4677e4396b74827c84bc | |
parent | When certificate validation fails, we must send a DECRYPT_ERROR alert (diff) | |
download | wireguard-openbsd-5d68d434c1323ff62c41317efe8d1bb2c6dc6d5a.tar.xz wireguard-openbsd-5d68d434c1323ff62c41317efe8d1bb2c6dc6d5a.zip |
Handle zlib compression being disabled now that it's optional.
-rw-r--r-- | regress/usr.bin/ssh/proxy-connect.sh | 10 | ||||
-rw-r--r-- | regress/usr.bin/ssh/putty-transfer.sh | 10 |
2 files changed, 16 insertions, 4 deletions
diff --git a/regress/usr.bin/ssh/proxy-connect.sh b/regress/usr.bin/ssh/proxy-connect.sh index 39bbd3c96e7..8847fe0c664 100644 --- a/regress/usr.bin/ssh/proxy-connect.sh +++ b/regress/usr.bin/ssh/proxy-connect.sh @@ -1,9 +1,15 @@ -# $OpenBSD: proxy-connect.sh,v 1.11 2017/09/26 22:39:25 dtucker Exp $ +# $OpenBSD: proxy-connect.sh,v 1.12 2020/01/23 11:19:12 dtucker Exp $ # Placed in the Public Domain. tid="proxy connect" -for c in no yes; do +if [ "`${SSH} -Q compression`" = "none" ]; then + comp="no" +else + comp="no yes" +fi + +for c in $comp; do verbose "plain username comp=$c" opts="-oCompression=$c -F $OBJ/ssh_proxy" SSH_CONNECTION=`${SSH} $opts 999.999.999.999 'echo $SSH_CONNECTION'` diff --git a/regress/usr.bin/ssh/putty-transfer.sh b/regress/usr.bin/ssh/putty-transfer.sh index a7c13573df6..ad297e9f78c 100644 --- a/regress/usr.bin/ssh/putty-transfer.sh +++ b/regress/usr.bin/ssh/putty-transfer.sh @@ -1,4 +1,4 @@ -# $OpenBSD: putty-transfer.sh,v 1.6 2018/02/23 03:03:00 djm Exp $ +# $OpenBSD: putty-transfer.sh,v 1.7 2020/01/23 11:19:12 dtucker Exp $ # Placed in the Public Domain. tid="putty transfer data" @@ -7,7 +7,13 @@ if test "x$REGRESS_INTEROP_PUTTY" != "xyes" ; then fatal "putty interop tests not enabled" fi -for c in 0 1 ; do +if [ "`${SSH} -Q compression`" = "none" ]; then + comp="0" +else + comp="0 1" +fi + +for c in $comp; do verbose "$tid: compression $c" rm -f ${COPY} cp ${OBJ}/.putty/sessions/localhost_proxy \ |