aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssl/ssl/ssl_txt.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/openssl/ssl/ssl_txt.c')
-rw-r--r--crypto/openssl/ssl/ssl_txt.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/openssl/ssl/ssl_txt.c b/crypto/openssl/ssl/ssl_txt.c
index bd67dc70a951..45308d8b6587 100644
--- a/crypto/openssl/ssl/ssl_txt.c
+++ b/crypto/openssl/ssl/ssl_txt.c
@@ -124,6 +124,8 @@ int SSL_SESSION_print(BIO *bp, const SSL_SESSION *x)
s = "TLSv1";
else if (x->ssl_version == DTLS1_VERSION)
s = "DTLSv1";
+ else if (x->ssl_version == DTLS1_2_VERSION)
+ s = "DTLSv1.2";
else if (x->ssl_version == DTLS1_BAD_VER)
s = "DTLSv1-bad";
else