diff options
author | Rich Salz <rsalz@akamai.com> | 2015-06-22 19:26:50 -0400 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2015-06-22 20:49:21 -0400 |
commit | cc3f3fc2b1c94d65824ab8d69595b6d89b17cf8d (patch) | |
tree | 532592da9e21636edb3958f18c22029ed0925a13 /test | |
parent | 75ba5c58c6b3b3326a6c3198100830afa120e7c3 (diff) | |
download | openssl-new-cc3f3fc2b1c94d65824ab8d69595b6d89b17cf8d.tar.gz |
RT3907-fix
Typo in local variable name; introduced by previous fix.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test')
-rw-r--r-- | test/testssl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/testssl b/test/testssl index cb8e56a3b1..dd8920418d 100644 --- a/test/testssl +++ b/test/testssl @@ -119,14 +119,14 @@ $ssltest -bio_pair -server_auth -client_auth -app_verify $CA $extra || exit 1 test_cipher() { _cipher=$1 - echo "Testing $cipher" + echo "Testing $_cipher" prot="" if [ $2 = "SSLv3" ] ; then prot="-ssl3" fi - $ssltest -cipher $cipher $prot + $ssltest -cipher $_cipher $prot if [ $? -ne 0 ] ; then - echo "Failed $cipher" + echo "Failed $_cipher" exit 1 fi } |