diff options
author | Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> | 2013-05-02 04:52:27 -0400 |
---|---|---|
committer | Jozsef Kadlecsik <kadlec@blackhole.kfki.hu> | 2013-09-30 15:33:26 -0400 |
commit | b8cd97865c903e032db85e5a4f2783928c56f2bd (patch) | |
tree | 81208bff6c3409e57ba3a4ea6a454a720a08fe80 | |
parent | 20b2fab483094d51c8d26784b81e12149474e0f2 (diff) |
netfilter: ipset: Use fix sized type for timeout in the extension part
Signed-off-by: Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>
-rw-r--r-- | include/linux/netfilter/ipset/ip_set.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/netfilter/ipset/ip_set.h b/include/linux/netfilter/ipset/ip_set.h index f900f33a5f3d..69aa60487f05 100644 --- a/include/linux/netfilter/ipset/ip_set.h +++ b/include/linux/netfilter/ipset/ip_set.h | |||
@@ -67,7 +67,7 @@ enum ip_set_offset { | |||
67 | #define SET_WITH_COUNTER(s) ((s)->extensions & IPSET_EXT_COUNTER) | 67 | #define SET_WITH_COUNTER(s) ((s)->extensions & IPSET_EXT_COUNTER) |
68 | 68 | ||
69 | struct ip_set_ext { | 69 | struct ip_set_ext { |
70 | unsigned long timeout; | 70 | u32 timeout; |
71 | u64 packets; | 71 | u64 packets; |
72 | u64 bytes; | 72 | u64 bytes; |
73 | }; | 73 | }; |