From 766bbf16317a451e0d8142e263b34a4c4e61ffa2 Mon Sep 17 00:00:00 2001 From: Cyrill Gorcunov Date: Sat, 31 Mar 2012 02:46:00 +0400 Subject: [PATCH] sockets: Fix compilation on older kernel headers Since kernel commit 9c501935a3 the sys/socket.h should be included prior the linux/netlink.h. Make it so. Signed-off-by: Cyrill Gorcunov Signed-off-by: Pavel Emelyanov --- sockets.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sockets.c b/sockets.c index 895edd437..3d9d46d29 100644 --- a/sockets.c +++ b/sockets.c @@ -1,3 +1,4 @@ +#include #include #include #include