diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-02-23 20:03:55 -0500 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2015-02-23 20:08:05 -0500 |
commit | e410b07d2aa64a653bc0e93b77856af41297b84d (patch) | |
tree | 38aa8f9ddb2fe532e17cd77bb9181f307ac60636 /src | |
parent | 00c53f4283ca41878a84b370840a84760b00d46e (diff) |
libsystemd: revert one hunk of duplicate ifdef removal
This change exposed a bug in kernel headers:
/usr/include/linux/if_bridge.h:184:20: error: field 'ip6' has incomplete type
struct in6_addr ip6;
^
/usr/include/linux/if_tunnel.h:76:19: error: field 'prefix' has incomplete type
struct in6_addr prefix;
^
Diffstat (limited to 'src')
-rw-r--r-- | src/libsystemd/sd-rtnl/rtnl-types.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsystemd/sd-rtnl/rtnl-types.c b/src/libsystemd/sd-rtnl/rtnl-types.c index 3f4ba2e0f0..2257c81bfc 100644 --- a/src/libsystemd/sd-rtnl/rtnl-types.c +++ b/src/libsystemd/sd-rtnl/rtnl-types.c @@ -23,6 +23,7 @@ #include <sys/socket.h> #include <linux/netlink.h> #include <linux/rtnetlink.h> +#include <linux/in6.h> #include <linux/veth.h> #include <linux/if_bridge.h> #include <linux/if_addr.h> |