diff options
author | Evgeniy Polyakov <zbr@ioremap.net> | 2009-06-04 14:54:42 (GMT) |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2009-06-04 14:54:42 (GMT) |
commit | a5e78820966e17c2316866e00047e4e7e5480f04 (patch) | |
tree | 9d9d814edced591d0cbaabf6cf5e91c54556e255 /net/bridge | |
parent | e34d5c1a4f9919a81b4ea4591d7383245f35cb8e (diff) | |
download | linux-a5e78820966e17c2316866e00047e4e7e5480f04.tar.xz |
netfilter: x_tables: added hook number into match extension parameter structure.
Signed-off-by: Evgeniy Polyakov <zbr@ioremap.net>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/bridge')
-rw-r--r-- | net/bridge/netfilter/ebtables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/netfilter/ebtables.c b/net/bridge/netfilter/ebtables.c index 2455583..37928d5 100644 --- a/net/bridge/netfilter/ebtables.c +++ b/net/bridge/netfilter/ebtables.c @@ -170,7 +170,7 @@ unsigned int ebt_do_table (unsigned int hook, struct sk_buff *skb, mtpar.in = tgpar.in = in; mtpar.out = tgpar.out = out; mtpar.hotdrop = &hotdrop; - tgpar.hooknum = hook; + mtpar.hooknum = tgpar.hooknum = hook; read_lock_bh(&table->lock); private = table->private; |