summaryrefslogtreecommitdiffhomepage
path: root/packet
diff options
context:
space:
mode:
authorIWASE Yusuke <iwase.yusuke0@gmail.com>2017-10-12 15:06:30 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2017-11-01 21:56:21 +0900
commitfbc493411b3656c97cc979d086e5eecb942859c1 (patch)
tree29c8a123485091d1bb5342da0cb2d0817eb67653 /packet
parent3f022e8075153a637e96ba80ee2ca537ebe6004a (diff)
Fix some spelling for spell checker's test
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'packet')
-rw-r--r--packet/mrt/mrt.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet/mrt/mrt.go b/packet/mrt/mrt.go
index 1b7c3e05..0c009e80 100644
--- a/packet/mrt/mrt.go
+++ b/packet/mrt/mrt.go
@@ -443,9 +443,9 @@ func NewRibEntry(index uint16, time uint32, pathId uint32, pathAttrs []bgp.PathA
func (e *RibEntry) String() string {
if e.isAddPath {
- return fmt.Sprintf("RIB_ENTRY: PeerIndex [%d] OriginatedTime [%d] PathIdentifier[%d] PathAttrs [%v]", e.PeerIndex, e.OriginatedTime, e.PathIdentifier, e.PathAttributes)
+ return fmt.Sprintf("RIB_ENTRY: PeerIndex [%d] OriginatedTime [%d] PathIdentifier[%d] PathAttributes [%v]", e.PeerIndex, e.OriginatedTime, e.PathIdentifier, e.PathAttributes)
} else {
- return fmt.Sprintf("RIB_ENTRY: PeerIndex [%d] OriginatedTime [%d] PathAttrs [%v]", e.PeerIndex, e.OriginatedTime, e.PathAttributes)
+ return fmt.Sprintf("RIB_ENTRY: PeerIndex [%d] OriginatedTime [%d] PathAttributes [%v]", e.PeerIndex, e.OriginatedTime, e.PathAttributes)
}
}