From de13050722b4c78d89e1d66a18f6ce29cba116f4 Mon Sep 17 00:00:00 2001 From: tb Date: Mon, 25 Mar 2024 02:18:35 +0000 Subject: [PATCH] Add back trust member of X509_TRUST that I accidentally deleted --- lib/libcrypto/x509/x509_trs.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/libcrypto/x509/x509_trs.c b/lib/libcrypto/x509/x509_trs.c index 091340641bf..3466268940d 100644 --- a/lib/libcrypto/x509/x509_trs.c +++ b/lib/libcrypto/x509/x509_trs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_trs.c,v 1.51 2024/03/25 01:48:50 tb Exp $ */ +/* $OpenBSD: x509_trs.c,v 1.52 2024/03/25 02:18:35 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 1999. */ @@ -69,6 +69,7 @@ #include "x509_local.h" typedef struct x509_trust_st { + int trust; int (*check_trust)(int, const X509 *); int nid; } X509_TRUST; -- 2.20.1