diff options
| author | 2014-08-04 04:50:41 -0400 | |
|---|---|---|
| committer | 2014-08-20 15:13:08 +0200 | |
| commit | e91ded8db57472c20b59b2242b100764cc152a10 (patch) | |
| tree | d03fe4994b82711adc4aef5cb09bfcee7364070f /include/uapi | |
| parent | Merge tag 'pm+acpi-3.17-rc1-2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm (diff) | |
| download | linux-dev-e91ded8db57472c20b59b2242b100764cc152a10.tar.xz linux-dev-e91ded8db57472c20b59b2242b100764cc152a10.zip | |
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>
Diffstat (limited to 'include/uapi')
| -rw-r--r-- | include/uapi/linux/netfilter_arp/arpt_mangle.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uapi/linux/netfilter_arp/arpt_mangle.h b/include/uapi/linux/netfilter_arp/arpt_mangle.h index 250f502902bb..8c2b16a1f5a0 100644 --- a/include/uapi/linux/netfilter_arp/arpt_mangle.h +++ b/include/uapi/linux/netfilter_arp/arpt_mangle.h @@ -13,7 +13,7 @@ struct arpt_mangle union { struct in_addr tgt_ip; } u_t; - u_int8_t flags; + __u8 flags; int target; }; |
