summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2005-01-27 10:59:36 +0000
committerRichard Levitte <levitte@openssl.org>2005-01-27 10:59:36 +0000
commit97a1630e81aae8ed1603a7012ed0144d2e9865e7 (patch)
tree27a1d0a1cb8af1ffe3e978e7b5724971bdcf8cb5
parentbf746f0f466221e1c395e5d23bc68f70650dea25 (diff)
downloadopenssl-new-97a1630e81aae8ed1603a7012ed0144d2e9865e7.tar.gz
Oops, == should really be = when used with test ([ and ]).
I guess I use bash too much... Thanks to Peter Sylvester <Peter.Sylvester@edelweb.fr> for pointing it out to me.
-rw-r--r--test/testsslproxy2
1 files changed, 1 insertions, 1 deletions
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