summaryrefslogtreecommitdiff
path: root/regress
diff options
context:
space:
mode:
authortim <tim>2008-03-14 18:02:51 +0000
committertim <tim>2008-03-14 18:02:51 +0000
commitedaff9417b0d262ffd9762623128ea94b724fc76 (patch)
tree0cc88cd31a416a56a3e06f3c86c509c5f61da76d /regress
parent72c6c7989493cee410f687838221fece08615d23 (diff)
downloadopenssh-edaff9417b0d262ffd9762623128ea94b724fc76.tar.gz
- (tim) [regress/localcommand.sh] Shell portability fix. Reported by imorgan at
nas.nasa.gov
Diffstat (limited to 'regress')
-rw-r--r--regress/localcommand.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/localcommand.sh b/regress/localcommand.sh
index a23e5c67..feade7a9 100644
--- a/regress/localcommand.sh
+++ b/regress/localcommand.sh
@@ -8,7 +8,7 @@ echo 'LocalCommand echo foo' >> $OBJ/ssh_proxy
for p in 1 2; do
verbose "test $tid: proto $p localcommand"
- a=$(${SSH} -F $OBJ/ssh_proxy -$p somehost true)
+ a=`${SSH} -F $OBJ/ssh_proxy -$p somehost true`
if [ "$a" != "foo" ] ; then
fail "$tid proto $p"
fi