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.
This commit is contained in:
Daniel Kahn Gillmor 2013-12-19 13:55:00 -05:00 committed by Dr. Stephen Henson
parent 7963ddeb44
commit 0be085d34a

View File

@ -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)