summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2012-01-13 12:58:08 +0200
committerAlon Levy <alevy@redhat.com>2012-01-13 17:42:23 +0200
commit8a36c625a64dee573c157256fe2a681a93a6aefe (patch)
treed41bc7d182ab6798d02ba959fd2b911ee60e5e91
parent7a63185b9bf063fe23a470be4ecac6082cbb1a91 (diff)
downloadspice-8a36c625a64dee573c157256fe2a681a93a6aefe.tar.gz
spice-8a36c625a64dee573c157256fe2a681a93a6aefe.tar.xz
spice-8a36c625a64dee573c157256fe2a681a93a6aefe.zip
common/ssl_verify: special case to WIN32 that isn't MINGW32
-rw-r--r--common/ssl_verify.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/ssl_verify.h b/common/ssl_verify.h
index 8235c136..b8306f31 100644
--- a/common/ssl_verify.h
+++ b/common/ssl_verify.h
@@ -19,7 +19,7 @@
#ifndef SSL_VERIFY_H
#define SSL_VERIFY_H
-#ifdef WIN32
+#if defined(WIN32) && !defined(__MINGW32__)
#include <windows.h>
#include <wincrypt.h>
#endif