From: Daniel Kahn Gillmor Date: Thu, 19 Dec 2013 19:45:51 +0000 (-0500) Subject: emit "DHE" instead of "edh" for kX packet trace output X-Git-Tag: master-post-reformat~1012 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=75cb3771b4699bb3763ed133c7d45d88383894b1;p=oweals%2Fopenssl.git 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. --- diff --git a/ssl/t1_trce.c b/ssl/t1_trce.c index 4552c99ede..bc901556a6 100644 --- a/ssl/t1_trce.c +++ b/ssl/t1_trce.c @@ -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)