X-Git-Url: http://www.privoxy.org/gitweb/show-status?a=blobdiff_plain;f=openssl.c;h=39f465310a07ba4e0cfadf167cccdc22bcdcb0d8;hb=94fcd4336ac0b9e70117bb775a95468e54fd9f1f;hp=2841c125e6ecc88b630a27e730d37dd1ff48bb23;hpb=030ebb174b015574c858d5ac6da9ad4a3cb6112a;p=privoxy.git diff --git a/openssl.c b/openssl.c index 2841c125..39f46531 100644 --- a/openssl.c +++ b/openssl.c @@ -38,6 +38,13 @@ #include #include #include +#ifdef _WIN32 +/* https://www.openssl.org/docs/faq.html + I’ve compiled a program under Windows and it crashes: Why? + tl,dr: because it needs this include: +*/ +#include +#endif /* _WIN32 */ #include "config.h" #include "project.h" @@ -796,7 +803,7 @@ extern int create_client_ssl_connection(struct client_state *csp) if (ret < 0) { log_error(LOG_LEVEL_ERROR, - "generate_host_certificate failed: %d", ret); + "generate_host_certificate() failed: %d", ret); ret = -1; goto exit; }