diff options
author | Alon Levy <alevy@redhat.com> | 2012-01-13 12:58:08 +0200 |
---|---|---|
committer | Alon Levy <alevy@redhat.com> | 2012-01-13 17:42:23 +0200 |
commit | 8a36c625a64dee573c157256fe2a681a93a6aefe (patch) | |
tree | d41bc7d182ab6798d02ba959fd2b911ee60e5e91 /common | |
parent | 7a63185b9bf063fe23a470be4ecac6082cbb1a91 (diff) | |
download | spice-8a36c625a64dee573c157256fe2a681a93a6aefe.tar.gz spice-8a36c625a64dee573c157256fe2a681a93a6aefe.tar.xz spice-8a36c625a64dee573c157256fe2a681a93a6aefe.zip |
common/ssl_verify: special case to WIN32 that isn't MINGW32
Diffstat (limited to 'common')
-rw-r--r-- | common/ssl_verify.h | 2 |
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 |