diff options
author | Job Snijders <job@cvs.openbsd.org> | 2021-09-02 20:53:49 +0000 |
---|---|---|
committer | Job Snijders <job@cvs.openbsd.org> | 2021-09-02 20:53:49 +0000 |
commit | a8da22f14116958185f26b847ba6e4c43672e3ee (patch) | |
tree | 66e2a4c6645450c4a1980822256cec71437c96b4 /lib/libcrypto | |
parent | 6a0e5f6efe7e34bf9d4a07c6528b8498e1f0f085 (diff) |
Fix header file includes
OK tb@
Diffstat (limited to 'lib/libcrypto')
-rw-r--r-- | lib/libcrypto/x509/x509_addr.c | 6 | ||||
-rw-r--r-- | lib/libcrypto/x509/x509_asid.c | 11 |
2 files changed, 9 insertions, 8 deletions
diff --git a/lib/libcrypto/x509/x509_addr.c b/lib/libcrypto/x509/x509_addr.c index 68145dcf5bc..78b4751ade9 100644 --- a/lib/libcrypto/x509/x509_addr.c +++ b/lib/libcrypto/x509/x509_addr.c @@ -14,13 +14,13 @@ #include <stdio.h> #include <stdlib.h> -#include "internal/cryptlib.h" -#include <openssl/conf.h> #include <openssl/asn1.h> #include <openssl/asn1t.h> #include <openssl/buffer.h> +#include <openssl/conf.h> +#include <openssl/x509.h> #include <openssl/x509v3.h> -#include "crypto/x509.h" + #include "ext_dat.h" #ifndef OPENSSL_NO_RFC3779 diff --git a/lib/libcrypto/x509/x509_asid.c b/lib/libcrypto/x509/x509_asid.c index 1672b3c7f10..9a0992b8a64 100644 --- a/lib/libcrypto/x509/x509_asid.c +++ b/lib/libcrypto/x509/x509_asid.c @@ -14,14 +14,15 @@ #include <assert.h> #include <stdio.h> #include <string.h> -#include "internal/cryptlib.h" -#include <openssl/conf.h> + #include <openssl/asn1.h> #include <openssl/asn1t.h> -#include <openssl/x509v3.h> -#include <openssl/x509.h> -#include "crypto/x509.h" #include <openssl/bn.h> +#include <openssl/conf.h> +#include <openssl/x509.h> +#include <openssl/x509.h> +#include <openssl/x509v3.h> + #include "ext_dat.h" #ifndef OPENSSL_NO_RFC3779 |