From 227f36d3d5667c8d5f26c275d804b9c688db2c6e Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Mon, 13 Feb 2012 17:33:19 -0500 Subject: [PATCH] core: #include for struct in6_addr commit ae34fa900b0a8410002f6f96b0bd27d807489dfa 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. --- src/nm-netlink-utils.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nm-netlink-utils.h b/src/nm-netlink-utils.h index d751c0a91d..697faaf01b 100644 --- a/src/nm-netlink-utils.h +++ b/src/nm-netlink-utils.h @@ -24,6 +24,7 @@ #include #include #include +#include gboolean nm_netlink_find_address (int ifindex, int family,