summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2012-02-14 23:01:42 -0800
committerTim Rice <tim@multitalents.net>2012-02-14 23:01:42 -0800
commita3f297de91b58282e16f70efdceab9715f0068fb (patch)
tree8c8077ca832c9cc015f4e0f60c6ea621b4a56e95
parentf79b5d38a1d2ee6402cda1f98dc957fe97755712 (diff)
- (tim) [regress/keytype.sh] stderr redirection needs to be inside back quote
to work. Spotted by Angel Gonzalez
-rw-r--r--ChangeLog2
-rw-r--r--regress/keytype.sh2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ce88d919..3f5630da 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,8 @@
ok dtucker@
- (tim) [defines.h] move chunk introduced in 1.125 before MAXPATHLEN so
it actually works.
+ - (tim) [regress/keytype.sh] stderr redirection needs to be inside back quote
+ to work. Spotted by Angel Gonzalez
20120214
- (djm) [openbsd-compat/bsd-cygwin_util.c] Add PROGRAMFILES to list of
diff --git a/regress/keytype.sh b/regress/keytype.sh
index 2cbf132b..cb40c686 100644
--- a/regress/keytype.sh
+++ b/regress/keytype.sh
@@ -3,7 +3,7 @@
tid="login with different key types"
-TIME=`which time` 2>/dev/null
+TIME=`which time 2>/dev/null`
if test ! -x "$TIME"; then
TIME=""
fi