From: Andrew M. Kuchling Date: Thu, 18 Jan 2001 17:41:41 +0000 (+0000) Subject: Use openssl/*.h to include the OpenSSL header files X-Git-Tag: v2.1a1~154 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=697a0b0f966523194ef4f14092bd28c82656d7bd;p=thirdparty%2FPython%2Fcpython.git Use openssl/*.h to include the OpenSSL header files --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 11e87bc5ec9d..e6bddc531090 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -156,12 +156,12 @@ Socket methods: #endif #ifdef USE_SSL -#include "rsa.h" -#include "crypto.h" -#include "x509.h" -#include "pem.h" -#include "ssl.h" -#include "err.h" +#include "openssl/rsa.h" +#include "openssl/crypto.h" +#include "openssl/x509.h" +#include "openssl/pem.h" +#include "openssl/ssl.h" +#include "openssl/err.h" #endif /* USE_SSL */ #if defined(MS_WINDOWS) || defined(__BEOS__)