]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (djm) [regress/cert-hostkey.sh regress/cert-userkey.sh] fix shell test
authorDamien Miller <djm@mindrot.org>
Thu, 6 Jan 2011 22:50:08 +0000 (09:50 +1100)
committerDamien Miller <djm@mindrot.org>
Thu, 6 Jan 2011 22:50:08 +0000 (09:50 +1100)
   for no-ECC case. Patch from cristian.ionescu-idbohrn AT axis.com

ChangeLog
regress/cert-hostkey.sh
regress/cert-userkey.sh

index 4e63aab5bcf4f76e083bd760f9eca0e112e2be85..636524bba74067ba32b1d4688653b91b2516ef2b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index 1ae5d0bdabb5f48a5b8157ad71788fed2f9a20e8..c23a41c686fd44052e5a823b55fa0cf02b3c9a37 100644 (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
 
index a42c7f34a1b5fb9b2150c7f2ff2d4fc036aafb4e..fcca3708b219b714e5aa83956c3ffa55420a6d7b 100644 (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