Fix spells for keywords (vrfid, labelnum) in sprintf line

This commit is contained in:
Hitoshi Irino
2019-02-03 08:30:07 +09:00
parent d6bd1e561b
commit f17772298e
+1 -1
View File
@@ -1692,7 +1692,7 @@ type Nexthop struct {
func (n *Nexthop) String() string {
s := make([]string, 0)
s = append(s, fmt.Sprintf(
"type: %s, gate: %s, ifindex: %d, vrfid: %d, labelnum: %d",
"type: %s, gate: %s, ifindex: %d, vrf_id: %d, label_num: %d",
n.Type.String(), n.Gate.String(), n.Ifindex, n.VrfId, n.LabelNum))
for i := uint8(0); i < n.LabelNum; i++ {
s = append(s, fmt.Sprintf("label: %d", n.MplsLabels[i]))