summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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"