From: David Benjamin Date: Fri, 15 Sep 2017 22:36:40 +0000 (-0400) Subject: openssl: add missing includes X-Git-Tag: curl-7_56_0~54 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=843200c5b9b5de41e5acefce593f1229970f18ef;p=thirdparty%2Fcurl.git 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 --- diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 2933584b34..786f6c09a2 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