summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--regress/keytype.sh6
2 files changed, 9 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 0b8d2c7f6..13f077228 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120101109
2 - (tim) [regress/kextype.sh] Not all platforms have time in /usr/bin.
3 Feedback from dtucker@
4
120101108 520101108
2 - (tim) [regress/Makefile] Fixes to allow building/testing outside source 6 - (tim) [regress/Makefile] Fixes to allow building/testing outside source
3 tree. 7 tree.
diff --git a/regress/keytype.sh b/regress/keytype.sh
index 73858668e..b3d3a0d57 100644
--- a/regress/keytype.sh
+++ b/regress/keytype.sh
@@ -3,7 +3,11 @@
3 3
4tid="login with different key types" 4tid="login with different key types"
5 5
6TIME=/usr/bin/time 6TIME=`which time` 2>/dev/null
7if test ! -x "$TIME"; then
8 TIME=""
9fi
10
7cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak 11cp $OBJ/sshd_proxy $OBJ/sshd_proxy_bak
8cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak 12cp $OBJ/ssh_proxy $OBJ/ssh_proxy_bak
9 13