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.
This commit is contained in:
Daniel Kahn Gillmor 2013-12-19 14:45:51 -05:00 committed by Dr. Stephen Henson
parent 7988163c3b
commit 75cb3771b4

View File

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