aboutsummaryrefslogtreecommitdiffstats
path: root/net/openvswitch/conntrack.c
diff options
context:
space:
mode:
authorValentin Rothberg <valentinrothberg@gmail.com>2015-08-28 10:39:56 +0200
committerDavid S. Miller <davem@davemloft.net>2015-08-28 13:39:53 -0700
commit9723e6abc70a472c726d5d5ac6402a2d1bb10882 (patch)
tree0ca349d82b3fa253fd14d8898949ad4088d5b1ca /net/openvswitch/conntrack.c
parentMerge branch 'vrf-inetpeer' (diff)
downloadlinux-dev-9723e6abc70a472c726d5d5ac6402a2d1bb10882.tar.xz
linux-dev-9723e6abc70a472c726d5d5ac6402a2d1bb10882.zip
openswitch: fix typo CONFIG_NF_CONNTRACK_LABEL
Fix typo in conntrack.c s/CONFIG_NF_CONNTRACK_LABEL/CONFIG_NF_CONNTRACK_LABELS/ Signed-off-by: Valentin Rothberg <valentinrothberg@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--net/openvswitch/conntrack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/conntrack.c b/net/openvswitch/conntrack.c
index 890d3eedb447..886bd2758502 100644
--- a/net/openvswitch/conntrack.c
+++ b/net/openvswitch/conntrack.c
@@ -169,7 +169,7 @@ int ovs_ct_put_key(const struct sw_flow_key *key, struct sk_buff *skb)
nla_put_u32(skb, OVS_KEY_ATTR_CT_MARK, key->ct.mark))
return -EMSGSIZE;
- if (IS_ENABLED(CONFIG_NF_CONNTRACK_LABEL) &&
+ if (IS_ENABLED(CONFIG_NF_CONNTRACK_LABELS) &&
nla_put(skb, OVS_KEY_ATTR_CT_LABEL, sizeof(key->ct.label),
&key->ct.label))
return -EMSGSIZE;