From: tb Date: Sat, 31 Aug 2024 10:06:39 +0000 (+0000) Subject: The X509V3_CONF_METHOD goes away X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=536987031606dc517836bf3bd4a0ecebb5eef592;p=openbsd The X509V3_CONF_METHOD goes away No longer used, never really needed. ok beck jsing --- diff --git a/lib/libcrypto/x509/x509v3.h b/lib/libcrypto/x509/x509v3.h index 3c55987d47c..c59153496c5 100644 --- a/lib/libcrypto/x509/x509v3.h +++ b/lib/libcrypto/x509/x509v3.h @@ -1,4 +1,4 @@ -/* $OpenBSD: x509v3.h,v 1.33 2024/08/31 10:03:03 tb Exp $ */ +/* $OpenBSD: x509v3.h,v 1.34 2024/08/31 10:06:39 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 1999. */ @@ -120,14 +120,6 @@ struct v3_ext_method { void *usr_data; /* Any extension specific data */ }; -/* XXX - remove in next bump. */ -typedef struct X509V3_CONF_METHOD_st { - char *(*get_string)(void *db, const char *section, const char *value); - STACK_OF(CONF_VALUE) *(*get_section)(void *db, const char *section); - void (*free_string)(void *db, char *string); - void (*free_section)(void *db, STACK_OF(CONF_VALUE) *section); -} X509V3_CONF_METHOD; - struct v3_ext_ctx { #define CTX_TEST 0x1 int flags; @@ -135,7 +127,6 @@ struct v3_ext_ctx { X509 *subject_cert; X509_REQ *subject_req; X509_CRL *crl; - X509V3_CONF_METHOD *db_meth; /* XXX - remove in next bump. */ void *db; };