aboutsummaryrefslogtreecommitdiff
path: root/ssl/ssl_ciph.c
diff options
context:
space:
mode:
authorJimC <jim@carroll.com>2016-08-06 06:22:04 -0400
committerRich Salz <rsalz@openssl.org>2016-08-06 10:03:25 -0400
commita4a18b2f891c59fd78ad520da79146af13063892 (patch)
treec1e53a71ce268dde013fc589970ef6f81a9da8d2 /ssl/ssl_ciph.c
parente8fd2a4cb49c91e5af1608b3cd494e2a8cf02ae2 (diff)
downloadopenssl-a4a18b2f891c59fd78ad520da79146af13063892.zip
openssl-a4a18b2f891c59fd78ad520da79146af13063892.tar.gz
openssl-a4a18b2f891c59fd78ad520da79146af13063892.tar.bz2
Fix CIPHER_DEBUG
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)
Diffstat (limited to 'ssl/ssl_ciph.c')
-rw-r--r--ssl/ssl_ciph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c
index 2f036c3..060bd9d 100644
--- a/ssl/ssl_ciph.c
+++ b/ssl/ssl_ciph.c
@@ -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))