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. --- ssl/t1_trce.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ssl/t1_trce.c b/ssl/t1_trce.c index 4552c99..bc90155 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) -- 1.8.5.1 ______________________________________________________________________ OpenSSL Project http://www.openssl.org Development Mailing List openssl-dev@openssl.org Automated List Manager majord...@openssl.org