summaryrefslogtreecommitdiff
path: root/regress/localcommand.sh
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2008-03-14 11:02:51 -0700
committerTim Rice <tim@multitalents.net>2008-03-14 11:02:51 -0700
commit02db85bdcbb07f632cddd927ded208f3d4f1e65f (patch)
tree04412d058ca0cedf25ef30e99792db3841a9f8f1 /regress/localcommand.sh
parent51430434098ff74055925423787866f599e75177 (diff)
- (tim) [regress/localcommand.sh] Shell portability fix. Reported by imorgan at
nas.nasa.gov
Diffstat (limited to 'regress/localcommand.sh')
-rw-r--r--regress/localcommand.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/localcommand.sh b/regress/localcommand.sh
index a23e5c678..feade7a9d 100644
--- a/regress/localcommand.sh
+++ b/regress/localcommand.sh
@@ -8,7 +8,7 @@ echo 'LocalCommand echo foo' >> $OBJ/ssh_proxy
8 8
9for p in 1 2; do 9for p in 1 2; do
10 verbose "test $tid: proto $p localcommand" 10 verbose "test $tid: proto $p localcommand"
11 a=$(${SSH} -F $OBJ/ssh_proxy -$p somehost true) 11 a=`${SSH} -F $OBJ/ssh_proxy -$p somehost true`
12 if [ "$a" != "foo" ] ; then 12 if [ "$a" != "foo" ] ; then
13 fail "$tid proto $p" 13 fail "$tid proto $p"
14 fi 14 fi