summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Klausner <tk@giga.or.at>2011-03-28 11:56:25 +0100
committerWill Thompson <will.thompson@collabora.co.uk>2011-03-28 11:59:00 +0100
commit65c67e16c0e8f0dfa090ca3a60fb10804613f179 (patch)
tree99f957f6778a15f67f2caac23d646ec5a27fbc5b
parentce33e28e86f32be4849dc13e7b1010674f44e787 (diff)
Modify netinet/in.h fix to also work on FreeBSD.
Signed-off-by: Will Thompson <will.thompson@collabora.co.uk>
-rw-r--r--src/idle-server-connection.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/idle-server-connection.c b/src/idle-server-connection.c
index f010141..21c9a0e 100644
--- a/src/idle-server-connection.c
+++ b/src/idle-server-connection.c
@@ -28,10 +28,10 @@
#include <arpa/inet.h>
#include <fcntl.h>
-#include <netinet/in.h>
-#include <netinet/tcp.h>
#include <sys/types.h>
#include <sys/socket.h>
+#include <netinet/in.h>
+#include <netinet/tcp.h>
#include <unistd.h>
#define IDLE_DEBUG_FLAG IDLE_DEBUG_NETWORK