mirror of git://anongit.mindrot.org/openssh.git
- (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:
parent
8ad960b4ba
commit
322125b960
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue