From ad9e56e2b695cdba7000829c43d7c444a227fe4d Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 5 Nov 2015 14:44:26 +0100 Subject: swrap: Allow to open NETLINK sockets when loaded Signed-off-by: Andreas Schneider Reviewed-by: Stefan Metzmacher --- src/socket_wrapper.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/socket_wrapper.c b/src/socket_wrapper.c index 9ba212b..a04a705 100644 --- a/src/socket_wrapper.c +++ b/src/socket_wrapper.c @@ -2384,6 +2384,7 @@ static int swrap_socket(int family, int type, int protocol) case AF_INET6: #endif break; + case AF_NETLINK: case AF_UNIX: return libc_socket(family, type, protocol); default: -- cgit