diff options
author | tb <> | 2024-03-25 02:18:35 +0000 |
---|---|---|
committer | tb <> | 2024-03-25 02:18:35 +0000 |
commit | 127ef72c52bbb3a413d932a955742a1916b82acc (patch) | |
tree | a7114d69211ac05b4cc79626fcac044abf2f0769 | |
parent | bd7f79673992e1777668d3a9418cc5ddcfe54290 (diff) | |
download | openbsd-127ef72c52bbb3a413d932a955742a1916b82acc.tar.gz openbsd-127ef72c52bbb3a413d932a955742a1916b82acc.tar.bz2 openbsd-127ef72c52bbb3a413d932a955742a1916b82acc.zip |
Add back trust member of X509_TRUST that I accidentally deleted
-rw-r--r-- | src/lib/libcrypto/x509/x509_trs.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/x509/x509_trs.c b/src/lib/libcrypto/x509/x509_trs.c index 091340641b..3466268940 100644 --- a/src/lib/libcrypto/x509/x509_trs.c +++ b/src/lib/libcrypto/x509/x509_trs.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: x509_trs.c,v 1.51 2024/03/25 01:48:50 tb Exp $ */ | 1 | /* $OpenBSD: x509_trs.c,v 1.52 2024/03/25 02:18:35 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 1999. | 3 | * project 1999. |
4 | */ | 4 | */ |
@@ -69,6 +69,7 @@ | |||
69 | #include "x509_local.h" | 69 | #include "x509_local.h" |
70 | 70 | ||
71 | typedef struct x509_trust_st { | 71 | typedef struct x509_trust_st { |
72 | int trust; | ||
72 | int (*check_trust)(int, const X509 *); | 73 | int (*check_trust)(int, const X509 *); |
73 | int nid; | 74 | int nid; |
74 | } X509_TRUST; | 75 | } X509_TRUST; |