]> git.ipfire.org Git - thirdparty/libarchive.git/commitdiff
fix capitalized windows includes 99/head
authorMartin Müllenhaupt <mm@netlair.de>
Mon, 19 Jan 2015 12:54:06 +0000 (13:54 +0100)
committerMartin Müllenhaupt <mm@netlair.de>
Mon, 19 Jan 2015 12:54:06 +0000 (13:54 +0100)
libarchive/archive_hmac_private.h
libarchive_fe/passphrase.c

index e5be3dc7a541a5ae69259246b314bcfa898e56bd..3e48bc3ac9cc635c51bd1d6dee71a9e437be63a1 100644 (file)
@@ -36,7 +36,7 @@
 typedef        CCHmacContext archive_hmac_sha1_ctx;
 
 #elif defined(_WIN32) && !defined(__CYGWIN__)
-#include <Bcrypt.h>
+#include <bcrypt.h>
 
 typedef struct {
        BCRYPT_ALG_HANDLE       hAlg;
index f6f76278cb17ee177ecf6b364d21a6f1e6cacbd3..96d8f0a7b49841eafefd99cf59f5e5bed95b14bc 100644 (file)
@@ -76,7 +76,7 @@ __FBSDID("$FreeBSD$");
 
 
 #if defined(_WIN32) && !defined(__CYGWIN__)
-#include <Windows.h>
+#include <windows.h>
 
 static char *
 readpassphrase(const char *prompt, char *buf, size_t bufsiz, int flags)