commit | 50819ce8ef72ad7ccf79c6c3fb3b77a91ab8e540 | [log] [tgz] |
---|---|---|
author | Jeremiah <4462211+jeremiahpslewis@users.noreply.github.com> | Tue Feb 08 12:46:45 2022 +0100 |
committer | Jens Geyer <Jens-G@users.noreply.github.com> | Tue Feb 08 20:33:32 2022 +0100 |
tree | 90f099118ebed5c25ef0d66fd01db1bc5b4c6f1c | |
parent | 3cac3204519bbdfe02beb9d863e9b873cdaf9d07 [diff] [blame] |
Fix winsock capitalization for case sensitive cross-compilation
diff --git a/lib/cpp/test/OpenSSLManualInitTest.cpp b/lib/cpp/test/OpenSSLManualInitTest.cpp index 935a205..bf6c153 100644 --- a/lib/cpp/test/OpenSSLManualInitTest.cpp +++ b/lib/cpp/test/OpenSSLManualInitTest.cpp
@@ -21,7 +21,7 @@ // which will cause the test to fail #define MANUAL_OPENSSL_INIT 1 #ifdef _WIN32 -#include <WinSock2.h> +#include <winsock2.h> #endif #include <boost/test/unit_test.hpp>