diff options
author | job <> | 2021-09-02 20:53:48 +0000 |
---|---|---|
committer | job <> | 2021-09-02 20:53:48 +0000 |
commit | 6f02b3fb25a858fb7b848aad6c10710c7a2fa050 (patch) | |
tree | d6cd7964d1c0bd3a3c632f4adc704a6fe6e543d1 /src/lib | |
parent | fe4f950dc448e44f66ba488d2b4d5ed042fc6ad2 (diff) | |
download | openbsd-6f02b3fb25a858fb7b848aad6c10710c7a2fa050.tar.gz openbsd-6f02b3fb25a858fb7b848aad6c10710c7a2fa050.tar.bz2 openbsd-6f02b3fb25a858fb7b848aad6c10710c7a2fa050.zip |
Fix header file includes
OK tb@
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/x509/x509_addr.c | 6 | ||||
-rw-r--r-- | src/lib/libcrypto/x509/x509_asid.c | 11 |
2 files changed, 9 insertions, 8 deletions
diff --git a/src/lib/libcrypto/x509/x509_addr.c b/src/lib/libcrypto/x509/x509_addr.c index 68145dcf5b..78b4751ade 100644 --- a/src/lib/libcrypto/x509/x509_addr.c +++ b/src/lib/libcrypto/x509/x509_addr.c | |||
@@ -14,13 +14,13 @@ | |||
14 | #include <stdio.h> | 14 | #include <stdio.h> |
15 | #include <stdlib.h> | 15 | #include <stdlib.h> |
16 | 16 | ||
17 | #include "internal/cryptlib.h" | ||
18 | #include <openssl/conf.h> | ||
19 | #include <openssl/asn1.h> | 17 | #include <openssl/asn1.h> |
20 | #include <openssl/asn1t.h> | 18 | #include <openssl/asn1t.h> |
21 | #include <openssl/buffer.h> | 19 | #include <openssl/buffer.h> |
20 | #include <openssl/conf.h> | ||
21 | #include <openssl/x509.h> | ||
22 | #include <openssl/x509v3.h> | 22 | #include <openssl/x509v3.h> |
23 | #include "crypto/x509.h" | 23 | |
24 | #include "ext_dat.h" | 24 | #include "ext_dat.h" |
25 | 25 | ||
26 | #ifndef OPENSSL_NO_RFC3779 | 26 | #ifndef OPENSSL_NO_RFC3779 |
diff --git a/src/lib/libcrypto/x509/x509_asid.c b/src/lib/libcrypto/x509/x509_asid.c index 1672b3c7f1..9a0992b8a6 100644 --- a/src/lib/libcrypto/x509/x509_asid.c +++ b/src/lib/libcrypto/x509/x509_asid.c | |||
@@ -14,14 +14,15 @@ | |||
14 | #include <assert.h> | 14 | #include <assert.h> |
15 | #include <stdio.h> | 15 | #include <stdio.h> |
16 | #include <string.h> | 16 | #include <string.h> |
17 | #include "internal/cryptlib.h" | 17 | |
18 | #include <openssl/conf.h> | ||
19 | #include <openssl/asn1.h> | 18 | #include <openssl/asn1.h> |
20 | #include <openssl/asn1t.h> | 19 | #include <openssl/asn1t.h> |
21 | #include <openssl/x509v3.h> | ||
22 | #include <openssl/x509.h> | ||
23 | #include "crypto/x509.h" | ||
24 | #include <openssl/bn.h> | 20 | #include <openssl/bn.h> |
21 | #include <openssl/conf.h> | ||
22 | #include <openssl/x509.h> | ||
23 | #include <openssl/x509.h> | ||
24 | #include <openssl/x509v3.h> | ||
25 | |||
25 | #include "ext_dat.h" | 26 | #include "ext_dat.h" |
26 | 27 | ||
27 | #ifndef OPENSSL_NO_RFC3779 | 28 | #ifndef OPENSSL_NO_RFC3779 |