summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortim <tim>2012-02-15 07:01:42 +0000
committertim <tim>2012-02-15 07:01:42 +0000
commit347505c2183a98fbd248e9be6bc7287d645e8f33 (patch)
tree0e5414fa09f2823a131498f1ab947722a9f83521
parent8dd11f0a00818f48e6ad4a919f6f8a8d546bf685 (diff)
downloadopenssh-347505c2183a98fbd248e9be6bc7287d645e8f33.tar.gz
- (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