]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib: net - Remove WIN32 usage
authorAki Tuomi <aki.tuomi@open-xchange.com>
Tue, 12 Apr 2022 09:21:45 +0000 (12:21 +0300)
committeraki.tuomi <aki.tuomi@open-xchange.com>
Thu, 14 Apr 2022 11:10:37 +0000 (11:10 +0000)
This is not useful for anything.

src/lib/net.h

index 9d7f768457184e9f7bb4ceb67c021ee76938da09..8323a7959c53943bca836ef98d793fcaced18a0e 100644 (file)
@@ -1,12 +1,10 @@
 #ifndef NET_H
 #define NET_H
 
-#ifndef WIN32
-#  include <sys/socket.h>
-#  include <netinet/in.h>
-#  include <netdb.h>
-#  include <arpa/inet.h>
-#endif
+#include <sys/socket.h>
+#include <netinet/in.h>
+#include <netdb.h>
+#include <arpa/inet.h>
 
 #ifdef HAVE_SOCKS_H
 #include <socks.h>