diff options
author | 2020-02-06 17:35:22 +0000 | |
---|---|---|
committer | 2020-02-06 17:35:22 +0000 | |
commit | b7ca6301b744732f023ee3651cc095e4ee4ff3e1 (patch) | |
tree | 60d5765bb430c7721696ec820090c75b76f0e8e5 | |
parent | Eliminate use of 'migration aids' #define scsipi_<blah> and just use (diff) | |
download | wireguard-openbsd-b7ca6301b744732f023ee3651cc095e4ee4ff3e1.tar.xz wireguard-openbsd-b7ca6301b744732f023ee3651cc095e4ee4ff3e1.zip |
Re-enable the TLSv1.3 client since the known issues have been addressed.
ok tb@
-rw-r--r-- | lib/libssl/ssl_locl.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libssl/ssl_locl.h b/lib/libssl/ssl_locl.h index b3f7e9b2a55..f5f7a8348e8 100644 --- a/lib/libssl/ssl_locl.h +++ b/lib/libssl/ssl_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_locl.h,v 1.263 2020/02/06 13:14:17 jsing Exp $ */ +/* $OpenBSD: ssl_locl.h,v 1.264 2020/02/06 17:35:22 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -186,11 +186,9 @@ __BEGIN_HIDDEN_DECLS #define s2n(s,c) ((c[0]=(unsigned char)(((s)>> 8)&0xff), \ c[1]=(unsigned char)(((s) )&0xff)),c+=2) -#if 0 #ifndef LIBRESSL_HAS_TLS1_3_CLIENT #define LIBRESSL_HAS_TLS1_3_CLIENT #endif -#endif #if defined(LIBRESSL_HAS_TLS1_3_CLIENT) || defined(LIBRESSL_HAS_TLS1_3_SERVER) #define LIBRESSL_HAS_TLS1_3 |