diff options
author | Richard Levitte <levitte@openssl.org> | 2005-01-27 11:59:36 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2005-01-27 11:59:36 +0100 |
commit | 97a1630e81aae8ed1603a7012ed0144d2e9865e7 (patch) | |
tree | 27a1d0a1cb8af1ffe3e978e7b5724971bdcf8cb5 /test | |
parent | Check for errors from EVP_VerifyInit_ex(), or EVP_VerifyUpdate might (diff) | |
download | openssl-97a1630e81aae8ed1603a7012ed0144d2e9865e7.tar.xz openssl-97a1630e81aae8ed1603a7012ed0144d2e9865e7.zip |
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.
Diffstat (limited to 'test')
-rw-r--r-- | test/testsslproxy | 2 |
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 |