summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/libtls/tls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libtls/tls.c b/src/lib/libtls/tls.c
index 650610a515..608f0a3acd 100644
--- a/src/lib/libtls/tls.c
+++ b/src/lib/libtls/tls.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tls.c,v 1.91 2021/10/21 08:31:51 tb Exp $ */ 1/* $OpenBSD: tls.c,v 1.92 2021/10/21 14:31:21 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2014 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -631,7 +631,7 @@ tls_configure_ssl_verify(struct tls *ctx, SSL_CTX *ssl_ctx, int verify)
631 } 631 }
632 xi->crl = NULL; 632 xi->crl = NULL;
633 } 633 }
634 X509_VERIFY_PARAM_set_flags(store->param, 634 X509_STORE_set_flags(store,
635 X509_V_FLAG_CRL_CHECK | X509_V_FLAG_CRL_CHECK_ALL); 635 X509_V_FLAG_CRL_CHECK | X509_V_FLAG_CRL_CHECK_ALL);
636 } 636 }
637 637