From 97a1630e81aae8ed1603a7012ed0144d2e9865e7 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 27 Jan 2005 10:59:36 +0000 Subject: [PATCH] Oops, == should really be = when used with test ([ and ]). I guess I use bash too much... Thanks to Peter Sylvester for pointing it out to me. --- test/testsslproxy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testsslproxy b/test/testsslproxy index 40469f591e..70cf12342d 100644 --- a/test/testsslproxy +++ b/test/testsslproxy @@ -5,6 +5,6 @@ echo 'Some of them may turn out being invalid, which is fine.' for auth in A B C BC; do for cond in A B C 'A|B&!C'; do sh ./testssl $1 $2 $3 "-proxy_auth $auth -proxy_cond $cond" - if [ $? == 3 ]; then exit 1; fi + if [ $? = 3 ]; then exit 1; fi done done -- 2.25.1