diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-24 15:40:54 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2009-03-24 15:40:54 -0700 |
commit | 1957a322c9932e1a1d2ca1fd37ce4b335ceb7113 (patch) | |
tree | a31a657b3638618c7443e994a0c0be4884cc0ad5 | |
parent | a136af4ba6784c3310dee58ee006263336a8b462 (diff) |
Fix headers needed for grev2.6.29-1
Need to get right headers or build breaks.
-rw-r--r-- | ip/link_gre.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ip/link_gre.c b/ip/link_gre.c index 9109312b..9f8bde66 100644 --- a/ip/link_gre.c +++ b/ip/link_gre.c @@ -12,11 +12,12 @@ #include <string.h> #include <net/if.h> -#include <linux/if_tunnel.h> #include <sys/types.h> #include <sys/socket.h> #include <arpa/inet.h> +#include <linux/ip.h> +#include <linux/if_tunnel.h> #include "rt_names.h" #include "utils.h" #include "ip_common.h" |