aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--net/ipv4/ip_gre.c2
-rw-r--r--net/ipv4/ipip.c2
-rw-r--r--net/ipv6/sit.c2
3 files changed, 3 insertions, 3 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;
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)
465 nla_put_u16(skb, IFLA_IPTUN_ENCAP_DPORT, 465 nla_put_u16(skb, IFLA_IPTUN_ENCAP_DPORT,
466 tunnel->encap.dport) || 466 tunnel->encap.dport) ||
467 nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS, 467 nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS,
468 tunnel->encap.dport)) 468 tunnel->encap.flags))
469 goto nla_put_failure; 469 goto nla_put_failure;
470 470
471 return 0; 471 return 0;
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c
index 58e5b4710127..45ad92442cd5 100644
--- a/net/ipv6/sit.c
+++ b/net/ipv6/sit.c
@@ -1714,7 +1714,7 @@ static int ipip6_fill_info(struct sk_buff *skb, const struct net_device *dev)
1714 nla_put_u16(skb, IFLA_IPTUN_ENCAP_DPORT, 1714 nla_put_u16(skb, IFLA_IPTUN_ENCAP_DPORT,
1715 tunnel->encap.dport) || 1715 tunnel->encap.dport) ||
1716 nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS, 1716 nla_put_u16(skb, IFLA_IPTUN_ENCAP_FLAGS,
1717 tunnel->encap.dport)) 1717 tunnel->encap.flags))
1718 goto nla_put_failure; 1718 goto nla_put_failure;
1719 1719
1720 return 0; 1720 return 0;