diff options
author | 2011-05-20 02:43:36 +0000 | |
---|---|---|
committer | 2011-05-20 02:43:36 +0000 | |
commit | 630d55c6b7f710b99f7d79f50ff34a619eb6ab1b (patch) | |
tree | b78c4131dccd770f13ffc5cb37657a2754258b4b | |
parent | Add comment documenting what should be after the preauth check. ok djm (diff) | |
download | wireguard-openbsd-630d55c6b7f710b99f7d79f50ff34a619eb6ab1b.tar.xz wireguard-openbsd-630d55c6b7f710b99f7d79f50ff34a619eb6ab1b.zip |
another attempt to generate a v00 ECDSA key that broke the test
-rw-r--r-- | regress/usr.bin/ssh/cert-hostkey.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/usr.bin/ssh/cert-hostkey.sh b/regress/usr.bin/ssh/cert-hostkey.sh index 7d88b7ae1c6..82bbee42a85 100644 --- a/regress/usr.bin/ssh/cert-hostkey.sh +++ b/regress/usr.bin/ssh/cert-hostkey.sh @@ -1,4 +1,4 @@ -# $OpenBSD: cert-hostkey.sh,v 1.5 2010/08/31 12:24:09 djm Exp $ +# $OpenBSD: cert-hostkey.sh,v 1.6 2011/05/20 02:43:36 djm Exp $ # Placed in the Public Domain. tid="certified host keys" @@ -29,7 +29,7 @@ for ktype in rsa dsa ecdsa ; do -n $HOSTS $OBJ/cert_host_key_${ktype} || fail "couldn't sign cert_host_key_${ktype}" # v00 ecdsa certs do not exist - test "{ktype}" = "ecdsa" && continue + test "${ktype}" = "ecdsa" && continue cp $OBJ/cert_host_key_${ktype} $OBJ/cert_host_key_${ktype}_v00 cp $OBJ/cert_host_key_${ktype}.pub $OBJ/cert_host_key_${ktype}_v00.pub ${SSHKEYGEN} -t v00 -h -q -s $OBJ/host_ca_key \ |