diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-01-08 07:25:53 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-01-08 07:25:53 +0000 |
commit | 60975da5b54e2eaa52daf887fa33041906198a80 (patch) | |
tree | 5bcab5eb6f9f147ff71ce96bca5164de6dea0f0c | |
parent | 7b7a2e517a0a890f50d9e56d423841a64c9054fe (diff) |
x509_cpols.c will need to include x509_lcl.h soon
-rw-r--r-- | lib/libcrypto/x509/x509_cpols.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/x509/x509_cpols.c b/lib/libcrypto/x509/x509_cpols.c index 2ace607b23e..54b7178cb16 100644 --- a/lib/libcrypto/x509/x509_cpols.c +++ b/lib/libcrypto/x509/x509_cpols.c @@ -1,4 +1,4 @@ -/* $OpenBSD: x509_cpols.c,v 1.2 2021/08/24 15:23:03 tb Exp $ */ +/* $OpenBSD: x509_cpols.c,v 1.3 2022/01/08 07:25:52 tb Exp $ */ /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project 1999. */ @@ -66,6 +66,7 @@ #include <openssl/x509v3.h> #include "pcy_int.h" +#include "x509_lcl.h" /* Certificate policies extension support: this one is a bit complex... */ |