From 843200c5b9b5de41e5acefce593f1229970f18ef Mon Sep 17 00:00:00 2001 From: David Benjamin Date: Fri, 15 Sep 2017 18:36:40 -0400 Subject: [PATCH] openssl: add missing includes lib/vtls/openssl.c uses OpenSSL APIs from BUF_MEM and BIO APIs. Include their headers directly rather than relying on other OpenSSL headers including things. Closes https://github.com/curl/curl/pull/1891 --- lib/vtls/openssl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 2933584b3..786f6c09a 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -66,6 +66,8 @@ #include #include #include +#include +#include #ifdef HAVE_OPENSSL_PKCS12_H #include