summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2018-06-05 21:14:52 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2018-06-05 21:14:52 +0900
commit313f244c8d1571971b8ad847b47b90492621c124 (patch)
tree645193e807ac0e992ae223482f2b8618c810810a
parent789e24695699d0fe8d0851b6ed005cf4912c7454 (diff)
server: fix GetRib() with rpki
fix a bug that doesn't return validation results at all. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
-rw-r--r--server/server.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/server.go b/server/server.go
index b190205f..c43da3f4 100644
--- a/server/server.go
+++ b/server/server.go
@@ -1874,7 +1874,7 @@ func (s *BgpServer) SoftReset(addr string, family bgp.RouteFamily) error {
func (s *BgpServer) validateTable(r *table.Table) (v []*table.Validation) {
if s.roaManager.enabled() {
- v := make([]*table.Validation, 0, len(r.GetDestinations()))
+ v = make([]*table.Validation, 0, len(r.GetDestinations()))
for _, d := range r.GetDestinations() {
for _, p := range d.GetAllKnownPathList() {
v = append(v, s.roaManager.validate(p))