summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_seclevel.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libssl/ssl_seclevel.c')
-rw-r--r--src/lib/libssl/ssl_seclevel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_seclevel.c b/src/lib/libssl/ssl_seclevel.c
index b691b9bc4b..7026b330cf 100644
--- a/src/lib/libssl/ssl_seclevel.c
+++ b/src/lib/libssl/ssl_seclevel.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_seclevel.c,v 1.25 2022/08/17 18:41:17 tb Exp $ */ 1/* $OpenBSD: ssl_seclevel.c,v 1.26 2022/10/02 16:36:41 jsing Exp $ */
2/* 2/*
3 * Copyright (c) 2020-2022 Theo Buehler <tb@openbsd.org> 3 * Copyright (c) 2020-2022 Theo Buehler <tb@openbsd.org>
4 * 4 *
@@ -224,8 +224,8 @@ ssl_security_default_cb(const SSL *ssl, const SSL_CTX *ctx, int secop, int bits,
224static int 224static int
225ssl_ctx_security(const SSL_CTX *ctx, int secop, int bits, int nid, void *other) 225ssl_ctx_security(const SSL_CTX *ctx, int secop, int bits, int nid, void *other)
226{ 226{
227 return ctx->internal->cert->security_cb(NULL, ctx, secop, bits, nid, 227 return ctx->cert->security_cb(NULL, ctx, secop, bits, nid,
228 other, ctx->internal->cert->security_ex_data); 228 other, ctx->cert->security_ex_data);
229} 229}
230 230
231static int 231static int