diff options
Diffstat (limited to 'zebra/if_netlink.c')
-rw-r--r-- | zebra/if_netlink.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/zebra/if_netlink.c b/zebra/if_netlink.c index 701c81b6..4a4a2862 100644 --- a/zebra/if_netlink.c +++ b/zebra/if_netlink.c @@ -17,10 +17,11 @@ * You should have received a copy of the GNU General Public License * along with GNU Zebra; see the file COPYING. If not, write to the Free * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA - * 02111-1307, USA. + * 02111-1307, USA. */ #include <zebra.h> +#include "if_method.h" extern int interface_lookup_netlink (void); @@ -28,5 +29,5 @@ extern int interface_lookup_netlink (void); void interface_list (void) { - interface_lookup_netlink (); + interface_lookup_netlink (); } |