]> git.proxmox.com Git - mirror_iproute2.git/commitdiff
f_flower: fix build with musl libc
authorHans Dedecker <dedeckeh@gmail.com>
Wed, 23 Jan 2019 21:02:31 +0000 (22:02 +0100)
committerStephen Hemminger <stephen@networkplumber.org>
Thu, 24 Jan 2019 20:20:03 +0000 (09:20 +1300)
XATTR_SIZE_MAX requires the usage of linux/limits.h; let's include it

Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
tc/f_flower.c

index c563666702b50973703f37c0174bfae3f242fdf3..9659e894dd1f93b4f773525f38270ecadf174b67 100644 (file)
@@ -14,6 +14,7 @@
 #include <unistd.h>
 #include <string.h>
 #include <net/if.h>
 #include <unistd.h>
 #include <string.h>
 #include <net/if.h>
+#include <linux/limits.h>
 #include <linux/if_arp.h>
 #include <linux/if_ether.h>
 #include <linux/ip.h>
 #include <linux/if_arp.h>
 #include <linux/if_ether.h>
 #include <linux/ip.h>