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-pre-reformat~959 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=75cb3771b4699bb3763ed133c7d45d88383894b1;p=thirdparty%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 4552c99ede3..bc901556a6e 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)