summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-08-26 11:18:33 -0700
committerTony Kelman <tony@kelman.net>2015-03-16 13:59:29 -0700
commit3066026b0468730ac36850c276f6dab7140f2093 (patch)
tree52dac0f33b8338b75253d2138e59a6615e1f8e50 /src
parente613e6ebb830137bb8d61ab350b0ba622d27c819 (diff)
downloadlibgit2-3066026b0468730ac36850c276f6dab7140f2093.tar.gz
Fix build on mingw-w64
Diffstat (limited to 'src')
-rw-r--r--src/transports/winhttp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/transports/winhttp.c b/src/transports/winhttp.c
index 1d053796a..d1eb32a65 100644
--- a/src/transports/winhttp.c
+++ b/src/transports/winhttp.c
@@ -51,9 +51,9 @@ static const int no_check_cert_flags = SECURITY_FLAG_IGNORE_CERT_CN_INVALID |
SECURITY_FLAG_IGNORE_UNKNOWN_CA;
#if defined(__MINGW32__)
-static const CLSID CLSID_InternetSecurityManager = { 0x7B8A2D94, 0x0AC9, 0x11D1,
+const CLSID CLSID_InternetSecurityManager = { 0x7B8A2D94, 0x0AC9, 0x11D1,
{ 0x89, 0x6C, 0x00, 0xC0, 0x4F, 0xB6, 0xBF, 0xC4 } };
-static const IID IID_IInternetSecurityManager = { 0x79EAC9EE, 0xBAF9, 0x11CE,
+const IID IID_IInternetSecurityManager = { 0x79EAC9EE, 0xBAF9, 0x11CE,
{ 0x8C, 0x82, 0x00, 0xAA, 0x00, 0x4B, 0xA9, 0x0B } };
#endif