summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2013-10-24 12:22:49 -0700
committerTim Rice <tim@multitalents.net>2013-10-24 12:22:49 -0700
commitbd43e8872325e9bbb3319c89da593614709f317c (patch)
tree4a4b943a15dcde0c570164a47f742e01e98d159b
parenta90c0338083ee0e4064c4bdf61f497293a699be0 (diff)
- (tim) [regress/sftp-perm.sh] We need a shell that understands "! somecmd"
-rw-r--r--ChangeLog1
-rw-r--r--regress/sftp-perm.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index b4bbea167..e396e470e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -23,6 +23,7 @@
23 fix bug introduced in hostname canonicalisation commit: don't try to 23 fix bug introduced in hostname canonicalisation commit: don't try to
24 resolve hostnames when a ProxyCommand is set unless the user has forced 24 resolve hostnames when a ProxyCommand is set unless the user has forced
25 canonicalisation; spotted by Iain Morgan 25 canonicalisation; spotted by Iain Morgan
26 - (tim) [regress/sftp-perm.sh] We need a shell that understands "! somecmd"
26 27
2720131023 2820131023
28 - (djm) OpenBSD CVS Sync 29 - (djm) OpenBSD CVS Sync
diff --git a/regress/sftp-perm.sh b/regress/sftp-perm.sh
index 3448740bc..304ca0ac5 100644
--- a/regress/sftp-perm.sh
+++ b/regress/sftp-perm.sh
@@ -29,7 +29,7 @@ postcondition() {
29 _title="$1" 29 _title="$1"
30 _check="$2" 30 _check="$2"
31 test -z "$_check" && return 31 test -z "$_check" && return
32 sh -c "$_check" || fail "postcondition check failed: $_title" 32 ${TEST_SHELL} -c "$_check" || fail "postcondition check failed: $_title"
33} 33}
34 34
35ro_test() { 35ro_test() {