diff options
author | 2015-09-11 03:44:21 +0000 | |
---|---|---|
committer | 2015-09-11 03:44:21 +0000 | |
commit | 9c260a92ecfc925113f3602835a2795024c127d1 (patch) | |
tree | 9272b4d035c70b4ec657b2965076f719ffbe0e72 | |
parent | mention -Q key-plain and -Q key-cert; (diff) | |
download | wireguard-openbsd-9c260a92ecfc925113f3602835a2795024c127d1.tar.xz wireguard-openbsd-9c260a92ecfc925113f3602835a2795024c127d1.zip |
try all supported key types here; bz#2455 reported by Jakub Jelen
-rw-r--r-- | regress/usr.bin/ssh/keyscan.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/keyscan.sh b/regress/usr.bin/ssh/keyscan.sh index 886f3295ae7..f97364b76e7 100644 --- a/regress/usr.bin/ssh/keyscan.sh +++ b/regress/usr.bin/ssh/keyscan.sh @@ -1,4 +1,4 @@ -# $OpenBSD: keyscan.sh,v 1.4 2015/03/03 22:35:19 markus Exp $ +# $OpenBSD: keyscan.sh,v 1.5 2015/09/11 03:44:21 djm Exp $ # Placed in the Public Domain. tid="keyscan" @@ -8,7 +8,7 @@ rm -f ${OBJ}/host.dsa start_sshd -KEYTYPES="rsa dsa" +KEYTYPES=`${SSH} -Q key-plain` if ssh_version 1; then KEYTYPES="${KEYTYPES} rsa1" fi |