diff options
author | Tim Rice <tim@multitalents.net> | 2008-03-14 19:02:51 +0100 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2008-03-14 19:02:51 +0100 |
commit | 02db85bdcbb07f632cddd927ded208f3d4f1e65f (patch) | |
tree | 04412d058ca0cedf25ef30e99792db3841a9f8f1 /regress/localcommand.sh | |
parent | - (tim) [regress/sftp-cmds.sh] s/cd/lcd/ in lls test. Reported by (diff) | |
download | openssh-02db85bdcbb07f632cddd927ded208f3d4f1e65f.tar.xz openssh-02db85bdcbb07f632cddd927ded208f3d4f1e65f.zip |
- (tim) [regress/localcommand.sh] Shell portability fix. Reported by imorgan at
nas.nasa.gov
Diffstat (limited to '')
-rw-r--r-- | regress/localcommand.sh | 2 |
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 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 |