diff options
author | 2020-01-26 12:39:16 +0000 | |
---|---|---|
committer | 2020-01-26 12:39:16 +0000 | |
commit | 783b23ad643c94c3b2cb100fdf1d6fcde2fd1abe (patch) | |
tree | 04559f7168ab504699af7d089c62f3bd6915af5c /lib/libssl/ssl_ciph.c | |
parent | deprecate old keywords, some already removed, some now hitting the bitbucket. (diff) | |
download | wireguard-openbsd-783b23ad643c94c3b2cb100fdf1d6fcde2fd1abe.tar.xz wireguard-openbsd-783b23ad643c94c3b2cb100fdf1d6fcde2fd1abe.zip |
Fix SSL_CIPHER_description
ok jsing@
Diffstat (limited to 'lib/libssl/ssl_ciph.c')
-rw-r--r-- | lib/libssl/ssl_ciph.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/ssl_ciph.c b/lib/libssl/ssl_ciph.c index 2eeeca033f5..b1d684b8597 100644 --- a/lib/libssl/ssl_ciph.c +++ b/lib/libssl/ssl_ciph.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_ciph.c,v 1.109 2020/01/24 04:38:12 jsing Exp $ */ +/* $OpenBSD: ssl_ciph.c,v 1.110 2020/01/26 12:39:16 inoguchi Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1384,7 +1384,7 @@ SSL_CIPHER_description(const SSL_CIPHER *cipher, char *buf, int len) kx = "GOST"; break; case SSL_kTLS1_3: - au = "TLSv1.3"; + kx = "TLSv1.3"; break; default: kx = "unknown"; |