diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-01-09 14:20:30 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-01-09 14:20:30 +0900 |
commit | 5b7e1e6846962a5a47e98c5b7b295d389e08d77d (patch) | |
tree | 0b80ac0631a79bc317afd2e866c3742773798963 /table | |
parent | 900cb321fb3dc353b102aa1970e652184abc24eb (diff) |
table: disable update merging
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'table')
-rw-r--r-- | table/message.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/table/message.go b/table/message.go index a5926f11..12a51cf6 100644 --- a/table/message.go +++ b/table/message.go @@ -203,6 +203,7 @@ func isSamePathAttrs(pList1 []bgp.PathAttributeInterface, pList2 []bgp.PathAttri } func isMergeable(p1 Path, p2 Path) bool { + return false if p1 == nil { return false } |