diff options
author | tb <> | 2024-03-23 06:38:01 +0000 |
---|---|---|
committer | tb <> | 2024-03-23 06:38:01 +0000 |
commit | 973afe71a276e5e67638a08177a8fb6f68c1b71f (patch) | |
tree | e440dc17f869b6dc6a77117783add5bea32fcc6a /src | |
parent | cbcf6573e9eaf23ade78dce0d57a58850f3ea743 (diff) | |
download | openbsd-973afe71a276e5e67638a08177a8fb6f68c1b71f.tar.gz openbsd-973afe71a276e5e67638a08177a8fb6f68c1b71f.tar.bz2 openbsd-973afe71a276e5e67638a08177a8fb6f68c1b71f.zip |
Remove unused flags and arg2 members from X509_TRUST
ok jsing
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libcrypto/x509/x509_trs.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/libcrypto/x509/x509_trs.c b/src/lib/libcrypto/x509/x509_trs.c index 0fd6f80df4..8fb0e35f67 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.43 2024/03/23 06:37:15 tb Exp $ */ | 1 | /* $OpenBSD: x509_trs.c,v 1.44 2024/03/23 06:38:01 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,11 +69,9 @@ | |||
69 | 69 | ||
70 | typedef struct x509_trust_st { | 70 | typedef struct x509_trust_st { |
71 | int trust; | 71 | int trust; |
72 | int flags; | ||
73 | int (*check_trust)(struct x509_trust_st *, X509 *); | 72 | int (*check_trust)(struct x509_trust_st *, X509 *); |
74 | char *name; | 73 | char *name; |
75 | int arg1; | 74 | int arg1; |
76 | void *arg2; | ||
77 | } X509_TRUST; | 75 | } X509_TRUST; |
78 | 76 | ||
79 | static int | 77 | static int |