diff options
Diffstat (limited to 'src/crypto/bio')
-rw-r--r-- | src/crypto/bio/bio_test.c | 4 | ||||
-rw-r--r-- | src/crypto/bio/connect.c | 4 | ||||
-rw-r--r-- | src/crypto/bio/fd.c | 2 | ||||
-rw-r--r-- | src/crypto/bio/socket.c | 2 | ||||
-rw-r--r-- | src/crypto/bio/socket_helper.c | 4 |
5 files changed, 8 insertions, 8 deletions
diff --git a/src/crypto/bio/bio_test.c b/src/crypto/bio/bio_test.c index cad4cf3..ee11acc 100644 --- a/src/crypto/bio/bio_test.c +++ b/src/crypto/bio/bio_test.c @@ -28,8 +28,8 @@ #else #include <io.h> #pragma warning(push, 3) -#include <WinSock2.h> -#include <WS2tcpip.h> +#include <winsock2.h> +#include <ws2tcpip.h> #pragma warning(pop) #endif diff --git a/src/crypto/bio/connect.c b/src/crypto/bio/connect.c index 66ac3a7..cbb1bb6 100644 --- a/src/crypto/bio/connect.c +++ b/src/crypto/bio/connect.c @@ -68,8 +68,8 @@ #include <unistd.h> #else #pragma warning(push, 3) -#include <WinSock2.h> -#include <WS2tcpip.h> +#include <winsock2.h> +#include <ws2tcpip.h> #pragma warning(pop) #endif diff --git a/src/crypto/bio/fd.c b/src/crypto/bio/fd.c index 6b70eac..0b5baca 100644 --- a/src/crypto/bio/fd.c +++ b/src/crypto/bio/fd.c @@ -64,7 +64,7 @@ #else #include <io.h> #pragma warning(push, 3) -#include <Windows.h> +#include <windows.h> #pragma warning(pop) #endif diff --git a/src/crypto/bio/socket.c b/src/crypto/bio/socket.c index 590447f..e86befe 100644 --- a/src/crypto/bio/socket.c +++ b/src/crypto/bio/socket.c @@ -64,7 +64,7 @@ #include <unistd.h> #else #pragma warning(push, 3) -#include <WinSock2.h> +#include <winsock2.h> #pragma warning(pop) #endif diff --git a/src/crypto/bio/socket_helper.c b/src/crypto/bio/socket_helper.c index 52e1606..197c737 100644 --- a/src/crypto/bio/socket_helper.c +++ b/src/crypto/bio/socket_helper.c @@ -26,8 +26,8 @@ #include <unistd.h> #else #pragma warning(push, 3) -#include <WinSock2.h> -#include <WS2tcpip.h> +#include <winsock2.h> +#include <ws2tcpip.h> #pragma warning(pop) #endif |