diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-12-21 21:27:26 -0800 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2014-12-21 21:27:26 -0800 |
commit | c90dc7bcf1caadb23119e638ef7ed576e1c97187 (patch) | |
tree | ca9fb0cfae17045b503b2a0940367e609e567228 /table/table.go | |
parent | d84250491a53d3aefc00fe643d5bb45aea83b757 (diff) |
table: sends updates from AdjRibOut when FSM_ESTABLISHED
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'table/table.go')
-rw-r--r-- | table/table.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/table/table.go b/table/table.go index 85110f7b..f60c2dfb 100644 --- a/table/table.go +++ b/table/table.go @@ -65,7 +65,7 @@ func insert(table Table, path Path) Destination { table.validateNlri(path.GetNlri()) dest = getOrCreateDest(table, path.GetNlri()) - if path.isWithdraw() { + if path.IsWithdraw() { // withdraw insert dest.addWithdraw(path) } else { |