From 0be085d34aad30caeecd976d69ca43b0a1c2c5f0 Mon Sep 17 00:00:00 2001 From: Daniel Kahn Gillmor Date: Thu, 19 Dec 2013 13:55:00 -0500 Subject: [PATCH] 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. --- 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 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) -- 2.25.1