summaryrefslogtreecommitdiffhomepage
path: root/table/destination.go
diff options
context:
space:
mode:
Diffstat (limited to 'table/destination.go')
-rw-r--r--table/destination.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/table/destination.go b/table/destination.go
index aeabfbd0..9461713b 100644
--- a/table/destination.go
+++ b/table/destination.go
@@ -55,7 +55,7 @@ type Destination interface {
setBestPathReason(string)
getBestPath() Path
setBestPath(path Path)
- getOldBestPath() Path
+ GetOldBestPath() Path
setOldBestPath(path Path)
getKnownPathList() []Path
String() string
@@ -121,7 +121,7 @@ func (dd *DestinationDefault) setBestPath(path Path) {
dd.bestPath = path
}
-func (dd *DestinationDefault) getOldBestPath() Path {
+func (dd *DestinationDefault) GetOldBestPath() Path {
return dd.oldBestPath
}