diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-01-12 21:18:08 +0900 |
---|---|---|
committer | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2016-01-16 16:25:24 +0900 |
commit | b344eb3777e5088f0a97d585e81e546363ea4101 (patch) | |
tree | 16def797a39da2bf6d61fa30e664b699fc561247 /server/zclient.go | |
parent | 49ec4a328fd2e1bdc81797f150089818031ae6e1 (diff) |
table: kill unused field medSetByTargetNeighbor
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'server/zclient.go')
-rw-r--r-- | server/zclient.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/zclient.go b/server/zclient.go index ba731cce..994f1c78 100644 --- a/server/zclient.go +++ b/server/zclient.go @@ -127,7 +127,7 @@ func createPathFromIPRouteMessage(m *zebra.Message, peerInfo *table.PeerInfo) *t med := bgp.NewPathAttributeMultiExitDisc(body.Metric) pattr = append(pattr, med) - p := table.NewPath(peerInfo, nlri, isWithdraw, pattr, false, time.Now(), false) + p := table.NewPath(peerInfo, nlri, isWithdraw, pattr, time.Now(), false) p.IsFromZebra = true return p } |