diagnostic
diff --git a/OpenSSL/ssl/ssl.c b/OpenSSL/ssl/ssl.c
index b286b88..974c0ce 100644
--- a/OpenSSL/ssl/ssl.c
+++ b/OpenSSL/ssl/ssl.c
@@ -75,6 +75,7 @@
import_crypto();
#else
# ifdef WINDOWS
+ #warn "Windows"
HMODULE crypto = GetModuleHandle("crypto.pyd");
if (crypto == NULL) {
PyErr_SetString(PyExc_RuntimeError, "Unable to get crypto module");
@@ -83,6 +84,7 @@
new_x509name = GetProcAddress(crypto, "crypto_X509Name_New");
# else
+ #warn "Not windows"
new_x509name = crypto_X509Name_New;
# endif
#endif