From c8a05e1d1a30345e01040860b79c030afb668e36 Mon Sep 17 00:00:00 2001 From: Daniel Czerwonk <daniel@dan-nrw.de> Date: Sun, 10 Jun 2018 11:52:57 +0200 Subject: [PATCH] fixed typo --- routingtable/filter/term_condition.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/routingtable/filter/term_condition.go b/routingtable/filter/term_condition.go index df6b866a..fe19e461 100644 --- a/routingtable/filter/term_condition.go +++ b/routingtable/filter/term_condition.go @@ -23,7 +23,7 @@ func (f *TermCondition) Matches(p net.Prefix, pa *route.Path) bool { return f.matchesPrefixListFilters(p) && f.machtchesRouteFilters(p) && f.machtchesCommunityFilters(pa) && - f.machtchesLageCommunityFilters(pa) + f.machtchesLargeCommunityFilters(pa) } func (t *TermCondition) matchesPrefixListFilters(p net.Prefix) bool { @@ -72,7 +72,7 @@ func (t *TermCondition) machtchesCommunityFilters(pa *route.Path) bool { return false } -func (t *TermCondition) machtchesLageCommunityFilters(pa *route.Path) bool { +func (t *TermCondition) machtchesLargeCommunityFilters(pa *route.Path) bool { if len(t.largeCommunityFilters) == 0 { return true } -- GitLab