aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter/xt_quota.h
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2010-12-15 22:58:53 +0100
committerPatrick McHardy <kaber@trash.net>2010-12-15 22:58:53 +0100
commitf1c722295e029eace7960fc687efd5afd67dc555 (patch)
tree84b24d3dbecde3947520999a2ed297891eae4d5c /include/linux/netfilter/xt_quota.h
parentb880c1f077000956b9f475d5f3b6c5e45ff2e342 (diff)
downloadkernel_samsung_smdk4412-f1c722295e029eace7960fc687efd5afd67dc555.zip
kernel_samsung_smdk4412-f1c722295e029eace7960fc687efd5afd67dc555.tar.gz
kernel_samsung_smdk4412-f1c722295e029eace7960fc687efd5afd67dc555.tar.bz2
netfilter: xtables: use guarded types
We are supposed to use the kernel's own types in userspace exports. Signed-off-by: Jan Engelhardt <jengelh@medozas.de> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include/linux/netfilter/xt_quota.h')
-rw-r--r--include/linux/netfilter/xt_quota.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/netfilter/xt_quota.h b/include/linux/netfilter/xt_quota.h
index b0d28c6..8bda65f 100644
--- a/include/linux/netfilter/xt_quota.h
+++ b/include/linux/netfilter/xt_quota.h
@@ -9,9 +9,9 @@ enum xt_quota_flags {
struct xt_quota_priv;
struct xt_quota_info {
- u_int32_t flags;
- u_int32_t pad;
- aligned_u64 quota;
+ __u32 flags;
+ __u32 pad;
+ aligned_u64 quota;
/* Used internally by the kernel */
struct xt_quota_priv *master;