Skip to content

Commit

Permalink
ovn: fix build on FreeBSD
Browse files Browse the repository at this point in the history
The missing include was needed for struct in6_addr.

Otherwise, this build failure would occur.

In file included from ovn/lib/actions.c:23:
ovn/lib/ovn-dhcp.h:163:21: error: field has incomplete type 'struct in6_addr'

Signed-off-by: Thadeu Lima de Souza Cascardo <cascardo@redhat.com>
Signed-off-by: Ben Pfaff <blp@ovn.org>
  • Loading branch information
Thadeu Lima de Souza Cascardo authored and blp committed Oct 19, 2016
1 parent 413abbd commit f922f0f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions ovn/lib/ovn-dhcp.h
Expand Up @@ -17,6 +17,7 @@
#ifndef OVN_DHCP_H
#define OVN_DHCP_H 1

#include <netinet/in.h>
#include "openvswitch/hmap.h"
#include "hash.h"

Expand Down

0 comments on commit f922f0f

Please sign in to comment.