diff options
Diffstat (limited to 'table/message.go')
-rw-r--r-- | table/message.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/table/message.go b/table/message.go index 4bc531e3..7c290780 100644 --- a/table/message.go +++ b/table/message.go @@ -131,7 +131,7 @@ func cloneAttrSlice(attrs []bgp.PathAttributeInterface) []bgp.PathAttributeInter func CloneAndUpdatePathAttrs(pathList []Path, global *config.Global, peer *config.Neighbor) []Path { newPathList := make([]Path, 0, len(pathList)) for _, p := range pathList { - clone := p.clone(p.IsWithdraw()) + clone := p.Clone(p.IsWithdraw()) clone.updatePathAttrs(global, peer) newPathList = append(newPathList, clone) } |