diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-03-27 03:56:41 +0000 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-04-04 13:19:33 +0900 |
commit | ba5e06f38673acb98375d6ba2e85f8a6cb9c86f1 (patch) | |
tree | 7f7e8058a55e54f7cc10a6b62b0ca467842c5504 /table | |
parent | a28ec7a8f908345ea73fabfeb89ca5ba4028b4ba (diff) |
table: fix typo
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'table')
-rw-r--r-- | table/destination.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/table/destination.go b/table/destination.go index 23c5c00f..72350d8a 100644 --- a/table/destination.go +++ b/table/destination.go @@ -215,7 +215,7 @@ func (dest *DestinationDefault) Calculate(localAsn uint32) (Path, string, error) // First remove the withdrawn paths. // Note: If we want to support multiple paths per destination we may // have to maintain sent-routes per path. - dest.removeWithdrawls() + dest.removeWithdrawals() // Have to select best-path from available paths and new paths. // If we do not have any paths, then we no longer have best path. @@ -267,7 +267,7 @@ func (dest *DestinationDefault) Calculate(localAsn uint32) (Path, string, error) //we can receive withdraws for such paths and withdrawals may not be //stopped by the same policies. //""" -func (dest *DestinationDefault) removeWithdrawls() { +func (dest *DestinationDefault) removeWithdrawals() { log.WithFields(log.Fields{ "Topic": "Table", |