From: Donatas Abraitis Date: Sun, 18 Jul 2021 15:03:25 +0000 (+0300) Subject: bgpd: Drop unnecessary chars for filtered reason X-Git-Tag: frr-8.0.1~69^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F9152%2Fhead;p=mirror%2Ffrr.git bgpd: Drop unnecessary chars for filtered reason Seems missed grammarly review for the reason "as-path contains our own AS;" Signed-off-by: Donatas Abraitis (cherry picked from commit 692174a1c5963b087ef1450c01dbde29e9cb26e0) --- diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c index 366a53e26c..06f98cc6ab 100644 --- a/bgpd/bgp_route.c +++ b/bgpd/bgp_route.c @@ -3662,7 +3662,7 @@ int bgp_update(struct peer *peer, const struct prefix *p, uint32_t addpath_id, if (aspath_loop_check(attr->aspath, peer->change_local_as) > aspath_loop_count) { peer->stat_pfx_aspath_loop++; - reason = "as-path contains our own AS A;"; + reason = "as-path contains our own AS;"; goto filtered; } }