From: Daniel Kahn Gillmor Date: Thu, 19 Dec 2013 18:55:00 +0000 (-0500) Subject: emit "ECDHE" instead of "EECDH" for kX packet trace output X-Git-Tag: master-post-reformat~1015 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0be085d34aad30caeecd976d69ca43b0a1c2c5f0;p=oweals%2Fopenssl.git 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. --- 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)