diff options
author | Kinichiro Inoguchi <inoguchi@cvs.openbsd.org> | 2020-01-26 12:39:17 +0000 |
---|---|---|
committer | Kinichiro Inoguchi <inoguchi@cvs.openbsd.org> | 2020-01-26 12:39:17 +0000 |
commit | 0a268028d6f147690e7a7f35f335c9e917db80ac (patch) | |
tree | 1fa40ba84af7ac2c713e898b55ebc5ce00a28422 | |
parent | fddc7e243fb32d72191aac30ea8d060b71582079 (diff) |
Fix SSL_CIPHER_description
ok jsing@
-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"; |