diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | regress/sftp-perm.sh | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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 | ||
27 | 20131023 | 28 | 20131023 |
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 | ||
35 | ro_test() { | 35 | ro_test() { |