diff options
author | June McEnroe <june@causal.agency> | 2021-10-14 21:26:33 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-10-14 21:26:33 -0400 |
commit | e68b599d314e314b4b4a78e8c2eee9bd725d453b (patch) | |
tree | 6ce6efc9893751088fa21135640e58621d072b32 | |
parent | Import LibreSSL 3.4.0 (diff) | |
download | libretls-e68b599d314e314b4b4a78e8c2eee9bd725d453b.tar.gz libretls-e68b599d314e314b4b4a78e8c2eee9bd725d453b.zip |
Import LibreSSL 3.4.1
Diffstat (limited to '')
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | tls.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/VERSION b/VERSION index 67e1183..bc5999b 100644 --- a/VERSION +++ b/VERSION @@ -1,2 +1,2 @@ -3.4.0 +3.4.1 diff --git a/tls.c b/tls.c index 262ec3d..fb8804d 100644 --- a/tls.c +++ b/tls.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tls.c,v 1.89 2021/02/01 15:35:41 tb Exp $ */ +/* $OpenBSD: tls.c,v 1.90 2021/10/02 09:46:48 jsing Exp $ */ /* * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> * @@ -521,7 +521,7 @@ tls_configure_ssl(struct tls *ctx, SSL_CTX *ssl_ctx) } if (ctx->config->verify_time == 0) { - X509_VERIFY_PARAM_set_flags(ssl_ctx->param, + X509_VERIFY_PARAM_set_flags(SSL_CTX_get0_param(ssl_ctx), X509_V_FLAG_NO_CHECK_TIME); } |