From 5481a059c41416b72929d7763eb88a06a846f6fb Mon Sep 17 00:00:00 2001 From: David Garske Date: Wed, 15 Feb 2023 11:44:34 -0800 Subject: [PATCH] Fix `wincrypt.h` include header case when used with case sensitive file system. --- src/ssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ssl.c b/src/ssl.c index 49b0312a2..513bf461b 100644 --- a/src/ssl.c +++ b/src/ssl.c @@ -164,7 +164,7 @@ #ifdef _WIN32 #include - #include + #include /* mingw gcc does not support pragma comment, and the * linking with crypt32 is handled in configure.ac */