Skip to content

Commit

Permalink
Remove Mtu from vif display .
Browse files Browse the repository at this point in the history
Closes-Bug:#1630651

Change-Id: I01b64a874d85e6454249793dafc5d71e00e3afac
  • Loading branch information
krharsh committed Mar 31, 2017
1 parent 5da45b1 commit d6b991a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions utils/vif.c
Expand Up @@ -483,9 +483,9 @@ list_get_print(vr_interface_req *req)
vr_get_if_type_string(req->vifr_type),
MAC_VALUE((uint8_t *)req->vifr_mac), req->vifr_ip);
vr_interface_print_head_space();
printf("Vrf:%d Flags:%s MTU:%d QOS:%d Ref:%d", req->vifr_vrf,
printf("Vrf:%d Flags:%s QOS:%d Ref:%d", req->vifr_vrf,
req->vifr_flags ? vr_if_flags(req->vifr_flags) : "NULL" ,
req->vifr_mtu, req->vifr_qos_map_index, req->vifr_ref_cnt);
req->vifr_qos_map_index, req->vifr_ref_cnt);
if (req->vifr_flags & (VIF_FLAG_MIRROR_TX | VIF_FLAG_MIRROR_RX)) {
printf(" Mirror index %d\n", req->vifr_mir_id);
} else {
Expand Down

0 comments on commit d6b991a

Please sign in to comment.