aboutsummaryrefslogtreecommitdiff
path: root/src/tool_metalink.c
diff options
context:
space:
mode:
authorMarc Hoersken <info@marc-hoersken.de>2012-09-11 14:35:18 +0200
committerMarc Hoersken <info@marc-hoersken.de>2012-09-11 14:35:18 +0200
commit7f7e2ea72f2471a20060024d6a2d8377d21bcba9 (patch)
treeba5d49d93ca451d599ec69ba2f13cb7105476626 /src/tool_metalink.c
parent4d384a87142dccb13b8198147b5db15a4aaa9906 (diff)
wincrypt: Fixed cross-compilation issues caused by include name
For some reason WinCrypt.h is named wincrypt.h under MinGW.
Diffstat (limited to 'src/tool_metalink.c')
-rw-r--r--src/tool_metalink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tool_metalink.c b/src/tool_metalink.c
index 9199b50f7..279a626cb 100644
--- a/src/tool_metalink.c
+++ b/src/tool_metalink.c
@@ -64,7 +64,7 @@
#elif defined(_WIN32)
/* For Windows: If no other crypto library is provided, we fallback
to the hash functions provided within the Microsoft Windows CryptoAPI */
-# include <WinCrypt.h>
+# include <wincrypt.h>
/* Custom structure in order to store the required provider and hash handle */
struct win32_crypto_hash {
HCRYPTPROV hCryptProv;