diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | regress/cert-hostkey.sh | 2 | ||||
-rw-r--r-- | regress/cert-userkey.sh | 2 |
3 files changed, 6 insertions, 2 deletions
@@ -1,3 +1,7 @@ | |||
1 | 20110107 | ||
2 | - (djm) [regress/cert-hostkey.sh regress/cert-userkey.sh] fix shell test | ||
3 | for no-ECC case. Patch from cristian.ionescu-idbohrn AT axis.com | ||
4 | |||
1 | 20110106 | 5 | 20110106 |
2 | - (djm) OpenBSD CVS Sync | 6 | - (djm) OpenBSD CVS Sync |
3 | - markus@cvs.openbsd.org 2010/12/08 22:46:03 | 7 | - markus@cvs.openbsd.org 2010/12/08 22:46:03 |
diff --git a/regress/cert-hostkey.sh b/regress/cert-hostkey.sh index 1ae5d0bda..c23a41c68 100644 --- a/regress/cert-hostkey.sh +++ b/regress/cert-hostkey.sh | |||
@@ -5,7 +5,7 @@ tid="certified host keys" | |||
5 | 5 | ||
6 | # used to disable ECC based tests on platforms without ECC | 6 | # used to disable ECC based tests on platforms without ECC |
7 | ecdsa="" | 7 | ecdsa="" |
8 | if "$TEST_SSH_ECC" = "yes"; then | 8 | if test "x$TEST_SSH_ECC" = "xyes"; then |
9 | ecdsa=ecdsa | 9 | ecdsa=ecdsa |
10 | fi | 10 | fi |
11 | 11 | ||
diff --git a/regress/cert-userkey.sh b/regress/cert-userkey.sh index a42c7f34a..fcca3708b 100644 --- a/regress/cert-userkey.sh +++ b/regress/cert-userkey.sh | |||
@@ -5,7 +5,7 @@ tid="certified user keys" | |||
5 | 5 | ||
6 | # used to disable ECC based tests on platforms without ECC | 6 | # used to disable ECC based tests on platforms without ECC |
7 | ecdsa="" | 7 | ecdsa="" |
8 | if "$TEST_SSH_ECC" = "yes"; then | 8 | if test "x$TEST_SSH_ECC" = "xyes"; then |
9 | ecdsa=ecdsa | 9 | ecdsa=ecdsa |
10 | fi | 10 | fi |
11 | 11 | ||