diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/x_tables.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/netfilter/x_tables.c b/net/netfilter/x_tables.c index 69c56287d518..0a12cedfe9e3 100644 --- a/net/netfilter/x_tables.c +++ b/net/netfilter/x_tables.c | |||
@@ -39,7 +39,7 @@ MODULE_DESCRIPTION("{ip,ip6,arp,eb}_tables backend module"); | |||
39 | struct compat_delta { | 39 | struct compat_delta { |
40 | struct compat_delta *next; | 40 | struct compat_delta *next; |
41 | unsigned int offset; | 41 | unsigned int offset; |
42 | short delta; | 42 | int delta; |
43 | }; | 43 | }; |
44 | 44 | ||
45 | struct xt_af { | 45 | struct xt_af { |
@@ -439,10 +439,10 @@ void xt_compat_flush_offsets(u_int8_t af) | |||
439 | } | 439 | } |
440 | EXPORT_SYMBOL_GPL(xt_compat_flush_offsets); | 440 | EXPORT_SYMBOL_GPL(xt_compat_flush_offsets); |
441 | 441 | ||
442 | short xt_compat_calc_jump(u_int8_t af, unsigned int offset) | 442 | int xt_compat_calc_jump(u_int8_t af, unsigned int offset) |
443 | { | 443 | { |
444 | struct compat_delta *tmp; | 444 | struct compat_delta *tmp; |
445 | short delta; | 445 | int delta; |
446 | 446 | ||
447 | for (tmp = xt[af].compat_offsets, delta = 0; tmp; tmp = tmp->next) | 447 | for (tmp = xt[af].compat_offsets, delta = 0; tmp; tmp = tmp->next) |
448 | if (tmp->offset < offset) | 448 | if (tmp->offset < offset) |