From 8c189d78ee52dae5725a9608d795a69b11de1f67 Mon Sep 17 00:00:00 2001 From: Gerald Pfeifer Date: Sat, 25 Jul 2009 18:57:18 +0200 Subject: [PATCH] winhttp: Include from winhttp_private.h. Remove now redundant inclusion from request.c. --- dlls/winhttp/request.c | 3 --- dlls/winhttp/winhttp_private.h | 3 +++ 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/winhttp/request.c b/dlls/winhttp/request.c index 0efada470d5..0d179a4d60b 100644 --- a/dlls/winhttp/request.c +++ b/dlls/winhttp/request.c @@ -27,9 +27,6 @@ #ifdef HAVE_ARPA_INET_H # include #endif -#ifdef HAVE_SYS_SOCKET_H -# include -#endif #include "windef.h" #include "winbase.h" diff --git a/dlls/winhttp/winhttp_private.h b/dlls/winhttp/winhttp_private.h index 83df0c0643e..e4451095893 100644 --- a/dlls/winhttp/winhttp_private.h +++ b/dlls/winhttp/winhttp_private.h @@ -27,6 +27,9 @@ #include "wine/unicode.h" #include +#ifdef HAVE_SYS_SOCKET_H +# include +#endif #ifdef HAVE_NETINET_IN_H # include #endif