core: #include <netinet/in.h> for struct in6_addr

commit ae34fa900b introduced a new
function nm_netlink_route6_add().  Its declaration in the header
includes a parameter with type 'struct in6_addr', but the proper
system header for that type was not included.
This commit is contained in:
Ryan Lortie 2012-02-13 17:33:19 -05:00 committed by Dan Winship
parent 1e4ccb39d4
commit 227f36d3d5

View file

@ -24,6 +24,7 @@
#include <glib.h>
#include <netlink/route/rtnl.h>
#include <netlink/route/route.h>
#include <netinet/in.h>
gboolean nm_netlink_find_address (int ifindex,
int family,