- (djm) [regress/cert-hostkey.sh regress/cert-userkey.sh] fix shell test

for no-ECC case. Patch from cristian.ionescu-idbohrn AT axis.com
This commit is contained in:
Damien Miller 2011-01-07 09:50:08 +11:00
parent 8ad960b4ba
commit 322125b960
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
20110107
- (djm) [regress/cert-hostkey.sh regress/cert-userkey.sh] fix shell test
for no-ECC case. Patch from cristian.ionescu-idbohrn AT axis.com
20110106
- (djm) OpenBSD CVS Sync
- markus@cvs.openbsd.org 2010/12/08 22:46:03

View File

@ -5,7 +5,7 @@ tid="certified host keys"
# used to disable ECC based tests on platforms without ECC
ecdsa=""
if "$TEST_SSH_ECC" = "yes"; then
if test "x$TEST_SSH_ECC" = "xyes"; then
ecdsa=ecdsa
fi

View File

@ -5,7 +5,7 @@ tid="certified user keys"
# used to disable ECC based tests on platforms without ECC
ecdsa=""
if "$TEST_SSH_ECC" = "yes"; then
if test "x$TEST_SSH_ECC" = "xyes"; then
ecdsa=ecdsa
fi