diff options
author | Tom Herbert <therbert@google.com> | 2014-11-05 19:49:38 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2014-11-05 22:18:20 -0500 |
commit | e1b2cb655060e081e73b384b1fc8b2e978f73467 (patch) | |
tree | 46b69489a8af03acbccbdf5038ec0cf5854f8191 /net/ipv4/ip_gre.c | |
parent | 93ffbeab77ca6a49e075235faa04c8b032c9fdc1 (diff) |
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/ip_gre.c')
-rw-r--r-- | net/ipv4/ip_gre.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c index 12055fdbe716..ac8491245e5b 100644 --- a/net/ipv4/ip_gre.c +++ b/net/ipv4/ip_gre.c | |||
@@ -789,7 +789,7 @@ static int ipgre_fill_info(struct sk_buff *skb, const struct net_device *dev) | |||
789 | nla_put_u16(skb, IFLA_GRE_ENCAP_DPORT, | 789 | nla_put_u16(skb, IFLA_GRE_ENCAP_DPORT, |
790 | t->encap.dport) || | 790 | t->encap.dport) || |
791 | nla_put_u16(skb, IFLA_GRE_ENCAP_FLAGS, | 791 | nla_put_u16(skb, IFLA_GRE_ENCAP_FLAGS, |
792 | t->encap.dport)) | 792 | t->encap.flags)) |
793 | goto nla_put_failure; | 793 | goto nla_put_failure; |
794 | 794 | ||
795 | return 0; | 795 | return 0; |