From 5f1dcc3b0cdfd168fee4e361488e7114808afaaf Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Fri, 4 Oct 2019 10:22:38 +0200 Subject: [PATCH 1/2] Removed inclusion of openSSL header --- wolfssl/openssl/x509.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/wolfssl/openssl/x509.h b/wolfssl/openssl/x509.h index d9479851c..4e247339f 100644 --- a/wolfssl/openssl/x509.h +++ b/wolfssl/openssl/x509.h @@ -2,9 +2,6 @@ #include -/* for compatibility, this is expected to be included */ -#include - /* wolfSSL_X509_print_ex flags */ #define X509_FLAG_COMPAT (0UL) #define X509_FLAG_NO_HEADER (1UL << 0) From 3183ccc0c8473c0ec987003b3c7a3aea0849eecc Mon Sep 17 00:00:00 2001 From: Daniele Lacamera Date: Fri, 4 Oct 2019 15:04:35 +0200 Subject: [PATCH 2/2] x509.h: include the correct header --- wolfssl/openssl/x509.h | 1 + 1 file changed, 1 insertion(+) diff --git a/wolfssl/openssl/x509.h b/wolfssl/openssl/x509.h index 4e247339f..72329d91f 100644 --- a/wolfssl/openssl/x509.h +++ b/wolfssl/openssl/x509.h @@ -1,6 +1,7 @@ /* x509.h for openssl */ #include +#include /* wolfSSL_X509_print_ex flags */ #define X509_FLAG_COMPAT (0UL)