summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--regress/localcommand.sh2
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index d91995444..a6cbea8af 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
2 - (tim) [regress/sftp-cmds.sh] s/cd/lcd/ in lls test. Reported by 2 - (tim) [regress/sftp-cmds.sh] s/cd/lcd/ in lls test. Reported by
3 vinschen at redhat.com. Add () to put echo commands in subshell for lls test 3 vinschen at redhat.com. Add () to put echo commands in subshell for lls test
4 I mistakenly left out of last commit. 4 I mistakenly left out of last commit.
5 - (tim) [regress/localcommand.sh] Shell portability fix. Reported by imorgan at
6 nas.nasa.gov
5 7
620080313 820080313
7 - (djm) [Makefile.in regress/Makefile] Fix interop-tests target (note to 9 - (djm) [Makefile.in regress/Makefile] Fix interop-tests target (note to
@@ -3755,4 +3757,4 @@
3755 OpenServer 6 and add osr5bigcrypt support so when someone migrates 3757 OpenServer 6 and add osr5bigcrypt support so when someone migrates
3756 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 3758 passwords between UnixWare and OpenServer they will still work. OK dtucker@
3757 3759
3758$Id: ChangeLog,v 1.4876 2008/03/14 17:39:17 tim Exp $ 3760$Id: ChangeLog,v 1.4877 2008/03/14 18:02:51 tim Exp $
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