summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2010-11-05 18:35:52 +1100
committerDarren Tucker <dtucker@zip.com.au>2010-11-05 18:35:52 +1100
commit345178d95103a976044ed44de0ad19cf1075706b (patch)
treead4b77b8fd7d4aeb90f3017f11bbe03096d12a9c
parenteab5f0df90cad495ee65abdb557538dbfb625d15 (diff)
- (dtucker) [regress/kextype.sh] Add missing "test".
-rw-r--r--ChangeLog1
-rw-r--r--regress/kextype.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index c6dfa2403..e540a4d18 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -46,6 +46,7 @@
46 - (dtucker) [Makefile configure.ac regress/Makefile regress/keytype.sh] 46 - (dtucker) [Makefile configure.ac regress/Makefile regress/keytype.sh]
47 Import recent changes to regress/Makefile, pass a flag to enable ECC tests 47 Import recent changes to regress/Makefile, pass a flag to enable ECC tests
48 from configure through to regress/Makefile and use it in the tests. 48 from configure through to regress/Makefile and use it in the tests.
49 - (dtucker) [regress/kextype.sh] Add missing "test".
49 50
5020101025 5120101025
51 - (tim) [openbsd-compat/glob.h] Remove sys/cdefs.h include that came with 52 - (tim) [openbsd-compat/glob.h] Remove sys/cdefs.h include that came with
diff --git a/regress/kextype.sh b/regress/kextype.sh
index 22ceb40c9..9f8b7bcd0 100644
--- a/regress/kextype.sh
+++ b/regress/kextype.sh
@@ -7,7 +7,7 @@ TIME=/usr/bin/time
7cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak 7cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak
8cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak 8cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak
9 9
10if "$TEST_SSH_ECC" = "yes"; then 10if test "$TEST_SSH_ECC" = "yes"; then
11 kextypes="ecdh-sha2-nistp256 ecdh-sha2-nistp384 ecdh-sha2-nistp521" 11 kextypes="ecdh-sha2-nistp256 ecdh-sha2-nistp384 ecdh-sha2-nistp521"
12fi 12fi
13kextypes="$kextypes diffie-hellman-group-exchange-sha256" 13kextypes="$kextypes diffie-hellman-group-exchange-sha256"