]> git.ipfire.org Git - thirdparty/openssh-portable.git/commitdiff
- (tim) [regress/sftp-perm.sh] We need a shell that understands "! somecmd"
authorTim Rice <tim@multitalents.net>
Thu, 24 Oct 2013 19:22:49 +0000 (12:22 -0700)
committerTim Rice <tim@multitalents.net>
Thu, 24 Oct 2013 19:22:49 +0000 (12:22 -0700)
ChangeLog
regress/sftp-perm.sh

index b4bbea1679a49534937630d1dd64d6a159bcda73..e396e470e237b3fbd39cd5ee0c63b86850414b50 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -23,6 +23,7 @@
      fix bug introduced in hostname canonicalisation commit: don't try to
      resolve hostnames when a ProxyCommand is set unless the user has forced
      canonicalisation; spotted by Iain Morgan
+ - (tim) [regress/sftp-perm.sh] We need a shell that understands "! somecmd"
 
 20131023
  - (djm) OpenBSD CVS Sync
index 3448740bc145e0bd22f2bf27467bc12c3e84f3f6..304ca0ac58770d52628617027047831f70acde63 100644 (file)
@@ -29,7 +29,7 @@ postcondition() {
        _title="$1"
        _check="$2"
        test -z "$_check" && return
-       sh -c "$_check" || fail "postcondition check failed: $_title"
+       ${TEST_SHELL} -c "$_check" || fail "postcondition check failed: $_title"
 }
 
 ro_test() {