diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | regress/cert-hostkey.sh | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -11,6 +11,7 @@ | |||
11 | host-key-force target rather than a substitution that is replaced with a | 11 | host-key-force target rather than a substitution that is replaced with a |
12 | comment so that the Makefile.in is still a syntactically valid Makefile | 12 | comment so that the Makefile.in is still a syntactically valid Makefile |
13 | (useful to run the distprep target) | 13 | (useful to run the distprep target) |
14 | - (tim) [regress/cert-hostkey.sh] Typo. Missing $ on variable name. | ||
14 | 15 | ||
15 | 20110213 | 16 | 20110213 |
16 | - (djm) [misc.c] include time.h for nanosleep() prototype | 17 | - (djm) [misc.c] include time.h for nanosleep() prototype |
diff --git a/regress/cert-hostkey.sh b/regress/cert-hostkey.sh index c23a41c68..6ccf54cc0 100644 --- a/regress/cert-hostkey.sh +++ b/regress/cert-hostkey.sh | |||
@@ -35,7 +35,7 @@ for ktype in rsa dsa $ecdsa ; do | |||
35 | -n $HOSTS $OBJ/cert_host_key_${ktype} || | 35 | -n $HOSTS $OBJ/cert_host_key_${ktype} || |
36 | fail "couldn't sign cert_host_key_${ktype}" | 36 | fail "couldn't sign cert_host_key_${ktype}" |
37 | # v00 ecdsa certs do not exist | 37 | # v00 ecdsa certs do not exist |
38 | test "{ktype}" = "ecdsa" && continue | 38 | test "${ktype}" = "ecdsa" && continue |
39 | cp $OBJ/cert_host_key_${ktype} $OBJ/cert_host_key_${ktype}_v00 | 39 | cp $OBJ/cert_host_key_${ktype} $OBJ/cert_host_key_${ktype}_v00 |
40 | cp $OBJ/cert_host_key_${ktype}.pub $OBJ/cert_host_key_${ktype}_v00.pub | 40 | cp $OBJ/cert_host_key_${ktype}.pub $OBJ/cert_host_key_${ktype}_v00.pub |
41 | ${SSHKEYGEN} -t v00 -h -q -s $OBJ/host_ca_key \ | 41 | ${SSHKEYGEN} -t v00 -h -q -s $OBJ/host_ca_key \ |