diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2019-08-10 16:39:18 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2019-08-10 16:39:18 +0000 |
commit | 9ba1bc30aa75544d0e27c90499b13657bffbe2b2 (patch) | |
tree | e9e03a0c093a4d8bbab4d52d4f0dcb4b6b7fea81 /lib/libcrypto/cms/cms_pwri.c | |
parent | 5053f66513c6b5094901d15e58727b8da061e816 (diff) |
Fix includes for non-installed headers.
Diffstat (limited to 'lib/libcrypto/cms/cms_pwri.c')
-rw-r--r-- | lib/libcrypto/cms/cms_pwri.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libcrypto/cms/cms_pwri.c b/lib/libcrypto/cms/cms_pwri.c index acddf51c401..a8030471e66 100644 --- a/lib/libcrypto/cms/cms_pwri.c +++ b/lib/libcrypto/cms/cms_pwri.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cms_pwri.c,v 1.14 2019/08/10 16:03:54 jsing Exp $ */ +/* $OpenBSD: cms_pwri.c,v 1.15 2019/08/10 16:39:17 jsing Exp $ */ /* * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL * project. @@ -52,7 +52,7 @@ * ==================================================================== */ -#include "internal/cryptlib.h" +#include "cryptlib.h" #include <openssl/asn1t.h> #include <openssl/pem.h> #include <openssl/x509v3.h> @@ -61,7 +61,7 @@ #include <openssl/rand.h> #include <openssl/aes.h> #include "cms_lcl.h" -#include "internal/asn1_int.h" +#include "asn1/asn1_locl.h" int CMS_RecipientInfo_set0_password(CMS_RecipientInfo *ri, unsigned char *pass, ossl_ssize_t passlen) |