summaryrefslogtreecommitdiffhomepage
path: root/server/server.go
diff options
context:
space:
mode:
authorISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2016-01-12 21:18:08 +0900
committerISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>2016-01-16 16:25:24 +0900
commitb344eb3777e5088f0a97d585e81e546363ea4101 (patch)
tree16def797a39da2bf6d61fa30e664b699fc561247 /server/server.go
parent49ec4a328fd2e1bdc81797f150089818031ae6e1 (diff)
table: kill unused field medSetByTargetNeighbor
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'server/server.go')
-rw-r--r--server/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/server.go b/server/server.go
index 2deb9b0f..817c7d05 100644
--- a/server/server.go
+++ b/server/server.go
@@ -1246,7 +1246,7 @@ func (server *BgpServer) Api2PathList(resource api.Resource, name string, ApiPat
pattr = append(pattr, bgp.NewPathAttributeExtendedCommunities(extcomms))
}
- paths = append(paths, table.NewPath(pi, nlri, path.IsWithdraw, pattr, false, time.Now(), path.NoImplicitWithdraw))
+ paths = append(paths, table.NewPath(pi, nlri, path.IsWithdraw, pattr, time.Now(), path.NoImplicitWithdraw))
}
return paths, nil