From 17a1676976deacb11cbd064f3de0032c7a381069 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Fri, 6 Mar 2009 07:07:43 -0800 Subject: [PATCH] Simplify an "if" in ssh-basic.test. Fixes bug #6169; --- testsuite/ssh-basic.test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testsuite/ssh-basic.test b/testsuite/ssh-basic.test index 59144119..865de3cd 100644 --- a/testsuite/ssh-basic.test +++ b/testsuite/ssh-basic.test @@ -18,7 +18,7 @@ if test x"$rsync_enable_ssh_tests" = xyes; then fi fi -if ! [ "`$SSH -o'BatchMode yes' localhost echo yes`" = "yes" ]; then +if [ "`$SSH -o'BatchMode yes' localhost echo yes`" != "yes" ]; then test_skipped "Skipping SSH tests because ssh conection to localhost not authorised" fi -- 2.34.1