From: Justin Pettit Date: Thu, 27 Jun 2013 22:02:12 +0000 (-0700) Subject: odp-util: Correct printing the VLAN PCP mask. X-Git-Tag: sliver-openvswitch-1.10.90-3~6^2~21 X-Git-Url: http://git.onelab.eu/?p=sliver-openvswitch.git;a=commitdiff_plain;h=b06b6a394a066b82a27d8baa17d6d562711d0a48 odp-util: Correct printing the VLAN PCP mask. Signed-off-by: Justin Pettit Acked-by: Ethan Jackson --- diff --git a/lib/odp-util.c b/lib/odp-util.c index fd4207a21..7724be4ef 100644 --- a/lib/odp-util.c +++ b/lib/odp-util.c @@ -1063,7 +1063,7 @@ format_odp_key_attr(const struct nlattr *a, const struct nlattr *ma, vlan_tci_to_vid(vlan_tci), vlan_tci_to_vid(mask), vlan_tci_to_pcp(vlan_tci), - vlan_tci_to_vid(mask), + vlan_tci_to_pcp(mask), vlan_tci_to_cfi(vlan_tci), vlan_tci_to_cfi(mask)); } else {