diff options
author | 2005-05-20 23:14:15 +0000 | |
---|---|---|
committer | 2005-05-20 23:14:15 +0000 | |
commit | 05115f3b07f4c801233919677b04b366ce18658a (patch) | |
tree | 138f6a1d2c644c478f796a089e12a9af3c79b7be | |
parent | Teach the SOCKS5 code more of the protocol, so it can send domain names (diff) | |
download | wireguard-openbsd-05115f3b07f4c801233919677b04b366ce18658a.tar.xz wireguard-openbsd-05115f3b07f4c801233919677b04b366ce18658a.zip |
force addressfamily=inet for tests, unbreaking dynamic-forward regress for
recently committed nc SOCKS5 changes
-rw-r--r-- | regress/usr.bin/ssh/test-exec.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/regress/usr.bin/ssh/test-exec.sh b/regress/usr.bin/ssh/test-exec.sh index 1202cee6636..b4e42e17477 100644 --- a/regress/usr.bin/ssh/test-exec.sh +++ b/regress/usr.bin/ssh/test-exec.sh @@ -1,4 +1,4 @@ -# $OpenBSD: test-exec.sh,v 1.27 2005/02/27 11:33:30 dtucker Exp $ +# $OpenBSD: test-exec.sh,v 1.28 2005/05/20 23:14:15 djm Exp $ # Placed in the Public Domain. USER=`id -un` @@ -148,6 +148,7 @@ trap fatal 3 2 # create server config cat << EOF > $OBJ/sshd_config Port $PORT + AddressFamily inet ListenAddress 127.0.0.1 #ListenAddress ::1 PidFile $PIDFILE |