diff options
author | Duan Jiong <duanj.fnst@cn.fujitsu.com> | 2014-08-01 09:52:58 +0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-07-31 22:37:06 -0700 |
commit | 4330487acfff0cf1d7b14d238583a182e0a444bb (patch) | |
tree | 701d320ce2855b936ca0a65359377590a80a209b /net/ipv6/udp.c | |
parent | 7bcc6738eef36e7139c4293c321bc43f716e8d85 (diff) | |
download | linux-4330487acfff0cf1d7b14d238583a182e0a444bb.tar.bz2 |
net: use inet6_iif instead of IP6CB()->iif
Signed-off-by: Duan Jiong <duanj.fnst@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/udp.c')
-rw-r--r-- | net/ipv6/udp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/udp.c b/net/ipv6/udp.c index c6941a1ac977..4836af8f582d 100644 --- a/net/ipv6/udp.c +++ b/net/ipv6/udp.c @@ -472,7 +472,7 @@ try_again: sin6->sin6_addr = ipv6_hdr(skb)->saddr; sin6->sin6_scope_id = ipv6_iface_scope_id(&sin6->sin6_addr, - IP6CB(skb)->iif); + inet6_iif(skb)); } *addr_len = sizeof(*sin6); } |