Skip to content

Commit

Permalink
openswitch: fix typo CONFIG_NF_CONNTRACK_LABEL
Browse files Browse the repository at this point in the history
Fix typo in conntrack.c
s/CONFIG_NF_CONNTRACK_LABEL/CONFIG_NF_CONNTRACK_LABELS/

Signed-off-by: Valentin Rothberg <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
vrothberg authored and davem330 committed Aug 28, 2015
1 parent fe55565 commit 9723e6a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/openvswitch/conntrack.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 9723e6a

Please sign in to comment.