Fix CIPHER_DEBUG
authorJimC <jim@carroll.com>
Sat, 6 Aug 2016 10:22:04 +0000 (06:22 -0400)
committerRich Salz <rsalz@openssl.org>
Sat, 6 Aug 2016 14:03:25 +0000 (10:03 -0400)
Commit 3eb2aff renamed a field of ssl_cipher_st from algorithm_ssl -> min_tls but neglected to update the fprintf reference which is included by -DCIPHER_DEBUG

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1417)

ssl/ssl_ciph.c

index 2f036c324fa400fb7ee004167fe71be0a970103a..060bd9d1c313d37bd11d5dc7325d6cbd5da4e678 100644 (file)
@@ -864,7 +864,7 @@ static void ssl_cipher_apply_rule(uint32_t cipher_id, uint32_t alg_mkey,
             fprintf(stderr,
                     "\nName: %s:\nAlgo = %08x/%08x/%08x/%08x/%08x Algo_strength = %08x\n",
                     cp->name, cp->algorithm_mkey, cp->algorithm_auth,
-                    cp->algorithm_enc, cp->algorithm_mac, cp->algorithm_ssl,
+                    cp->algorithm_enc, cp->algorithm_mac, cp->min_tls,
                     cp->algo_strength);
 #endif
             if (alg_mkey && !(alg_mkey & cp->algorithm_mkey))