From: Neale Ranns Date: Wed, 31 May 2017 17:34:35 +0000 (-0700) Subject: MPLS trace the EOS bit correctly X-Git-Tag: v17.07-rc1~106 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=d6d6751b89ef04f97b5ae0c5f5ce0ee8827cd2c3;p=vpp.git MPLS trace the EOS bit correctly Change-Id: I6c3fd612c19d9305f48ae0e429e12e96679e3b29 Signed-off-by: Neale Ranns --- diff --git a/src/vnet/mpls/mpls_lookup.c b/src/vnet/mpls/mpls_lookup.c index 7cedc3846bf..30031e51536 100644 --- a/src/vnet/mpls/mpls_lookup.c +++ b/src/vnet/mpls/mpls_lookup.c @@ -52,7 +52,8 @@ format_mpls_lookup_trace (u8 * s, va_list * args) t->next_index, t->lfib_index, t->lb_index, t->hash, vnet_mpls_uc_get_label( clib_net_to_host_u32(t->label_net_byte_order)), - vnet_mpls_uc_get_s(t->label_net_byte_order)); + vnet_mpls_uc_get_s( + clib_net_to_host_u32(t->label_net_byte_order))); return s; }