From: Lance Richardson Date: Mon, 15 Feb 2016 15:08:51 +0000 (-0500) Subject: lib: Fix netbsd compilation error. X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=2456f331687416fca6741daf9c1aa6c1e97ef640 lib: Fix netbsd compilation error. NetBSD requires to be included before . Without this fix we have: In file included from lib/netdev-vport.c:25:0: /usr/include/netinet/ip6.h:82:18: error: field 'ip6_src' has incomplete type /usr/include/netinet/ip6.h:83:18: error: field 'ip6_dst' has incomplete type Signed-off-by: Lance Richardson Signed-off-by: Ben Pfaff --- diff --git a/lib/netdev-vport.c b/lib/netdev-vport.c index 2234de781..df6d8cfd9 100644 --- a/lib/netdev-vport.c +++ b/lib/netdev-vport.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include