aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/ipip.c
diff options
context:
space:
mode:
authorTom Herbert <therbert@google.com>2014-11-05 16:49:38 -0800
committerDavid S. Miller <davem@davemloft.net>2014-11-05 22:18:20 -0500
commite1b2cb655060e081e73b384b1fc8b2e978f73467 (patch)
tree46b69489a8af03acbccbdf5038ec0cf5854f8191 /net/ipv4/ipip.c
parentr8152: disable the tasklet by default (diff)
downloadlinux-dev-e1b2cb655060e081e73b384b1fc8b2e978f73467.tar.xz
linux-dev-e1b2cb655060e081e73b384b1fc8b2e978f73467.zip
fou: Fix typo in returning flags in netlink
When filling netlink info, dport is being returned as flags. Fix instances to return correct value. Signed-off-by: Tom Herbert <therbert@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ipip.c')
-rw-r--r--net/ipv4/ipip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipip.c b/net/ipv4/ipip.c
index 37096d64730e..40403114f00a 100644
--- a/net/ipv4/ipip.c
+++ b/net/ipv4/ipip.c
@@ -465,7 +465,7 @@ static int ipip_fill_info(struct sk_buff *skb, const struct net_device *dev)
nla_put_u16(skb, IFLA_IPTUN_ENCAP_DPORT,
tunnel->encap.dport) ||
nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS,
- tunnel->encap.dport))
+ tunnel->encap.flags))
goto nla_put_failure;
return 0;