Commit 12d2ee21 authored by Richard Levitte's avatar Richard Levitte
Browse files

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: default avatarRich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1741)
parent efba60ca
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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"