summaryrefslogtreecommitdiffstats
path: root/crypto/asn1/asn1_item_list.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-10-18 22:02:30 +0200
committerRichard Levitte <levitte@openssl.org>2016-10-19 12:11:56 +0200
commit12d2ee211b2a4f489787aaf9aa758fe3db128304 (patch)
treeeccd6488f655c23e94ff0c5baf54a4e473c36311 /crypto/asn1/asn1_item_list.c
parentefba60ca7ab72cae62baad2aaaf2da32d1093c38 (diff)
Fix config option 'no-deprecated'
crypto/asn1/asn1_item_list.c needed including dh.h and rsa.h directly. The reason is that they are not included by x509.h when configured 'no-deprecated' Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1741)
Diffstat (limited to 'crypto/asn1/asn1_item_list.c')
-rw-r--r--crypto/asn1/asn1_item_list.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/asn1/asn1_item_list.c b/crypto/asn1/asn1_item_list.c
index eaeb34fcc9..9798192f4b 100644
--- a/crypto/asn1/asn1_item_list.c
+++ b/crypto/asn1/asn1_item_list.c
@@ -12,9 +12,11 @@
#include <openssl/asn1.h>
#include <openssl/asn1t.h>
#include <openssl/cms.h>
+#include <openssl/dh.h>
#include <openssl/ocsp.h>
#include <openssl/pkcs7.h>
#include <openssl/pkcs12.h>
+#include <openssl/rsa.h>
#include <openssl/x509v3.h>
#include "asn1_item_list.h"