Fix typo for non x86 platforms. 64/7564/2
authorChristophe Fontaine <christophe.fontaine@enea.com>
Mon, 10 Jul 2017 13:21:10 +0000 (15:21 +0200)
committerChris Luke <chris_luke@comcast.com>
Thu, 13 Jul 2017 14:34:02 +0000 (14:34 +0000)
Change-Id: Ic31b388cb972fb5f8a3fc42a5412401c3ee3e487
Signed-off-by: Christophe Fontaine <christophe.fontaine@enea.com>
src/vnet/ethernet/node.c

index ce5b2c5..d9fdff4 100755 (executable)
@@ -304,7 +304,7 @@ ethernet_frame_is_any_tagged (u16 type0, u16 type1)
   r = _mm_cmpeq_epi16 (ethertype_mask, r);
   return !_mm_test_all_zeros (r, r);
 #else
-  return ethernet_frame_is_tagged (type0) || ethernet_frame_istagged (type1);
+  return ethernet_frame_is_tagged (type0) || ethernet_frame_is_tagged (type1);
 #endif
 }