summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--regress/host-expand.sh6
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 6dde0e858..3e931f394 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120110111
2 - (tim) [regress/host-expand.sh] Fix for building outside of read only
3 source tree.
4
120110109 520110109
2 - (djm) [Makefile.in] list ssh_host_ecdsa key in PATHSUBS; spotted by 6 - (djm) [Makefile.in] list ssh_host_ecdsa key in PATHSUBS; spotted by
3 openssh AT roumenpetrov.info 7 openssh AT roumenpetrov.info
diff --git a/regress/host-expand.sh b/regress/host-expand.sh
index c0417d9c9..a0188363d 100644
--- a/regress/host-expand.sh
+++ b/regress/host-expand.sh
@@ -5,14 +5,14 @@ tid="expand %h and %n"
5echo 'PermitLocalCommand yes' >> $OBJ/ssh_proxy 5echo 'PermitLocalCommand yes' >> $OBJ/ssh_proxy
6printf 'LocalCommand printf "%%%%s\\n" "%%n" "%%h"\n' >> $OBJ/ssh_proxy 6printf 'LocalCommand printf "%%%%s\\n" "%%n" "%%h"\n' >> $OBJ/ssh_proxy
7 7
8cat >expect <<EOE 8cat >$OBJ/expect <<EOE
9somehost 9somehost
10127.0.0.1 10127.0.0.1
11EOE 11EOE
12 12
13for p in 1 2; do 13for p in 1 2; do
14 verbose "test $tid: proto $p" 14 verbose "test $tid: proto $p"
15 ${SSH} -F $OBJ/ssh_proxy -$p somehost true >actual 15 ${SSH} -F $OBJ/ssh_proxy -$p somehost true >$OBJ/actual
16 diff expect actual || fail "$tid proto $p" 16 diff $OBJ/expect $OBJ/actual || fail "$tid proto $p"
17done 17done
18 18