diff options
author | Julian Anastasov <ja@ssi.bg> | 2013-10-20 15:43:05 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-10-21 18:37:01 -0400 |
commit | 56e42441ed54b092d6c7411138ce60d049e7c731 (patch) | |
tree | 5839a5ca70c8228fa40fdc610243491e35a065b1 /net | |
parent | 550bab42f83308c9d6ab04a980cc4333cef1c8fa (diff) | |
download | linux-stable-56e42441ed54b092d6c7411138ce60d049e7c731.tar.gz linux-stable-56e42441ed54b092d6c7411138ce60d049e7c731.tar.bz2 linux-stable-56e42441ed54b092d6c7411138ce60d049e7c731.zip |
netfilter: nf_conntrack: fix rt6i_gateway checks for H.323 helper
Now when rt6_nexthop() can return nexthop address we can use it
for proper nexthop comparison of directly connected destinations.
For more information refer to commit bbb5823cf742a7
("netfilter: nf_conntrack: fix rt_gateway checks for H.323 helper").
Signed-off-by: Julian Anastasov <ja@ssi.bg>
Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/nf_conntrack_h323_main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/netfilter/nf_conntrack_h323_main.c b/net/netfilter/nf_conntrack_h323_main.c index bdebd03bc8cd..70866d192efc 100644 --- a/net/netfilter/nf_conntrack_h323_main.c +++ b/net/netfilter/nf_conntrack_h323_main.c @@ -778,8 +778,8 @@ static int callforward_do_filter(const union nf_inet_addr *src, flowi6_to_flowi(&fl1), false)) { if (!afinfo->route(&init_net, (struct dst_entry **)&rt2, flowi6_to_flowi(&fl2), false)) { - if (!memcmp(&rt1->rt6i_gateway, &rt2->rt6i_gateway, - sizeof(rt1->rt6i_gateway)) && + if (ipv6_addr_equal(rt6_nexthop(rt1), + rt6_nexthop(rt2)) && rt1->dst.dev == rt2->dst.dev) ret = 1; dst_release(&rt2->dst); |