aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>2013-12-19 13:55:00 -0500
committerDr. Stephen Henson <steve@openssl.org>2014-01-09 15:43:27 +0000
commit0be085d34aad30caeecd976d69ca43b0a1c2c5f0 (patch)
tree9879563760f22766d19ec19db05dac6d2475ca78
parent7963ddeb44b56e5fed734c39e726afc32d9cdb15 (diff)
downloadopenssl-0be085d34aad30caeecd976d69ca43b0a1c2c5f0.tar.gz
emit "ECDHE" instead of "EECDH" for kX packet trace output
other parts of packet tracing emit the standard "ECDHE" label instead of "EECDH". This change brings the output of ssl_print_client_keyex() and ssl_print_server_keyex() into accordance with the standard term.
-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 6856898fbf..751e0fff5c 100644
--- a/ssl/t1_trce.c
+++ b/ssl/t1_trce.c
@@ -817,7 +817,7 @@ static int ssl_get_keyex(const char **pname, SSL *ssl)
}
if (alg_k & SSL_kEECDH)
{
- *pname = "EECDH";
+ *pname = "ECDHE";
return SSL_kEECDH;
}
if (alg_k & SSL_kECDHr)