diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-16 18:48:59 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2023-04-16 18:48:59 +0000 |
commit | 4623a4ea5d321f32cc13c9462175a4c50361b097 (patch) | |
tree | a29ba94ca3e7bc55162fc0b6c49d1260550af326 /lib/libcrypto/x509 | |
parent | c363904c977d4c2f5cb9cdf9f9a804a3d91bbf33 (diff) |
x509_vfy.c and x509_vpm.c don't need vpm_int.h anymore
Diffstat (limited to 'lib/libcrypto/x509')
-rw-r--r-- | lib/libcrypto/x509/x509_vfy.c | 5 | ||||
-rw-r--r-- | lib/libcrypto/x509/x509_vpm.c | 3 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcrypto/x509/x509_vfy.c b/lib/libcrypto/x509/x509_vfy.c index 8fd193699eb..d54ba783e8d 100644 --- a/lib/libcrypto/x509/x509_vfy.c +++ b/lib/libcrypto/x509/x509_vfy.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_vfy.c,v 1.112 2023/04/16 08:06:42 tb Exp $ */ +/* $OpenBSD: x509_vfy.c,v 1.113 2023/04/16 18:48:58 tb Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -73,9 +73,10 @@ #include <openssl/objects.h> #include <openssl/x509.h> #include <openssl/x509v3.h> + #include "asn1_local.h" -#include "vpm_int.h" #include "x509_internal.h" +#include "x509_local.h" /* CRL score values */ diff --git a/lib/libcrypto/x509/x509_vpm.c b/lib/libcrypto/x509/x509_vpm.c index cb13267b753..5dff102d546 100644 --- a/lib/libcrypto/x509/x509_vpm.c +++ b/lib/libcrypto/x509/x509_vpm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_vpm.c,v 1.33 2023/02/16 08:38:17 tb Exp $ */ +/* $OpenBSD: x509_vpm.c,v 1.34 2023/04/16 18:48:58 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 2004. */ @@ -66,7 +66,6 @@ #include <openssl/x509.h> #include <openssl/x509v3.h> -#include "vpm_int.h" #include "x509_local.h" /* X509_VERIFY_PARAM functions */ |