summaryrefslogtreecommitdiffstats
path: root/ssl/t1_trce.c
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2013-12-19 14:45:51 -0500
committerDr. Stephen Henson <steve@openssl.org>2014-01-09 15:43:27 +0000
commit75cb3771b4699bb3763ed133c7d45d88383894b1 (patch)
tree9f122b54a56825753d7eb55a54422919b3c7bbf7 /ssl/t1_trce.c
parent7988163c3bd5d4c72e12ac7db960da57eba4eb0e (diff)
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.
Diffstat (limited to 'ssl/t1_trce.c')
-rw-r--r--ssl/t1_trce.c2
1 files changed, 1 insertions, 1 deletions
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)