From: Etienne Dechamps Date: Sun, 22 Jun 2014 17:45:49 +0000 (+0100) Subject: Fix Windows includes. X-Git-Tag: release-1.1pre11~98 X-Git-Url: https://www.tinc-vpn.org/git/browse?a=commitdiff_plain;h=058473dc8d4cf60f79aee18d473342b8a3c25fbe;p=tinc Fix Windows includes. These Windows include lines are capitalized, which causes the build to fail when cross-compiling from Linux to Windows using MinGW as the MinGW headers are entirely lower case. --- diff --git a/src/ed25519/seed.c b/src/ed25519/seed.c index 25e51822..ca4089c1 100644 --- a/src/ed25519/seed.c +++ b/src/ed25519/seed.c @@ -3,8 +3,8 @@ #ifndef ED25519_NO_SEED #ifdef _WIN32 -#include -#include +#include +#include #else #include #endif