diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2001-01-18 17:41:41 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2001-01-18 17:41:41 (GMT) |
commit | 697a0b0f966523194ef4f14092bd28c82656d7bd (patch) | |
tree | 78f35da4d50ebecdb523b59184e0ee06f3707141 | |
parent | 2f1064c77beca101fa85e2fea1c9ece47cca5b86 (diff) | |
download | cpython-697a0b0f966523194ef4f14092bd28c82656d7bd.zip cpython-697a0b0f966523194ef4f14092bd28c82656d7bd.tar.gz cpython-697a0b0f966523194ef4f14092bd28c82656d7bd.tar.bz2 |
Use openssl/*.h to include the OpenSSL header files
-rw-r--r-- | Modules/socketmodule.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 11e87bc..e6bddc5 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__) |