emit "DHE" instead of "edh" for kX packet trace output
authorDaniel Kahn Gillmor <dkg@fifthhorseman.net>
Thu, 19 Dec 2013 19:45:51 +0000 (14:45 -0500)
committerDr. Stephen Henson <steve@openssl.org>
Thu, 9 Jan 2014 15:43:27 +0000 (15:43 +0000)
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

index 4552c99ede3db789d334c19e23e52c1d8b0a2a06..bc901556a6e73e4a02d67b932647557a17d087a4 100644 (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)