From 75cb3771b4699bb3763ed133c7d45d88383894b1 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Thu, 19 Dec 2013 14:45:51 -0500 Subject: [PATCH] emit "DHE" instead of "edh" for kX packet trace output other parts of packet tracing emit the standard "DHE" label instead of "edh". This change brings the output of ssl_print_client_keyex() and ssl_print_server_keyex() into accordance with the standard term. --- ssl/t1_trce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ssl/t1_trce.c b/ssl/t1_trce.c index 4552c99ede..bc901556a6 100644 --- a/ssl/t1_trce.c +++ b/ssl/t1_trce.c @@ -812,7 +812,7 @@ static int ssl_get_keyex(const char **pname, SSL *ssl) } if (alg_k & SSL_kEDH) { - *pname = "edh"; + *pname = "DHE"; return SSL_kEDH; } if (alg_k & SSL_kECDHE) -- 2.25.1