diff options
author | jsing <> | 2019-08-10 16:39:17 +0000 |
---|---|---|
committer | jsing <> | 2019-08-10 16:39:17 +0000 |
commit | d2294fe6ec6b67e094cc8b699125f5d1027c17e3 (patch) | |
tree | dc5392fe60fad67f6fe52c6bd41e202bae1e31c9 /src/lib/libcrypto/cms/cms_sd.c | |
parent | b01b00fb95cf0b3b49b443caa121fd70172439cf (diff) | |
download | openbsd-d2294fe6ec6b67e094cc8b699125f5d1027c17e3.tar.gz openbsd-d2294fe6ec6b67e094cc8b699125f5d1027c17e3.tar.bz2 openbsd-d2294fe6ec6b67e094cc8b699125f5d1027c17e3.zip |
Fix includes for non-installed headers.
Diffstat (limited to 'src/lib/libcrypto/cms/cms_sd.c')
-rw-r--r-- | src/lib/libcrypto/cms/cms_sd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/libcrypto/cms/cms_sd.c b/src/lib/libcrypto/cms/cms_sd.c index 0aa6f1a7c6..b5b6dc4e67 100644 --- a/src/lib/libcrypto/cms/cms_sd.c +++ b/src/lib/libcrypto/cms/cms_sd.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: cms_sd.c,v 1.14 2019/08/10 16:03:54 jsing Exp $ */ | 1 | /* $OpenBSD: cms_sd.c,v 1.15 2019/08/10 16:39:17 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
4 | * project. | 4 | * project. |
@@ -52,7 +52,7 @@ | |||
52 | * ==================================================================== | 52 | * ==================================================================== |
53 | */ | 53 | */ |
54 | 54 | ||
55 | #include "internal/cryptlib.h" | 55 | #include "cryptlib.h" |
56 | #include <openssl/asn1t.h> | 56 | #include <openssl/asn1t.h> |
57 | #include <openssl/pem.h> | 57 | #include <openssl/pem.h> |
58 | #include <openssl/x509.h> | 58 | #include <openssl/x509.h> |
@@ -60,8 +60,8 @@ | |||
60 | #include <openssl/err.h> | 60 | #include <openssl/err.h> |
61 | #include <openssl/cms.h> | 61 | #include <openssl/cms.h> |
62 | #include "cms_lcl.h" | 62 | #include "cms_lcl.h" |
63 | #include "internal/asn1_int.h" | 63 | #include "asn1/asn1_locl.h" |
64 | #include "internal/evp_int.h" | 64 | #include "evp/evp_locl.h" |
65 | 65 | ||
66 | /* CMS SignedData Utilities */ | 66 | /* CMS SignedData Utilities */ |
67 | 67 | ||