Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

uapi: netfilter_arp: use __u8 instead of u_int8_t

Similarly, the u_int8_t type is non-standard and not defined. Change
it to use __u8 like the rest of the netfilter headers.

Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>

authored by

Mike Frysinger and committed by
Pablo Neira Ayuso
e91ded8d c9d26423

+1 -1
+1 -1
include/uapi/linux/netfilter_arp/arpt_mangle.h
··· 13 13 union { 14 14 struct in_addr tgt_ip; 15 15 } u_t; 16 - u_int8_t flags; 16 + __u8 flags; 17 17 int target; 18 18 }; 19 19