mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-12 07:48:25 +00:00
bgpd: fix display bgp large-community exact-match
Before patch: frr# show bgp large-community 1:1:1 exact-match % Large-community malformed After patch: frr# show bgp large-community 1:1:1 exact-match Signed-off-by: Dmitrii Turlupov <dturlupov@factor-ts.ru>
This commit is contained in:
parent
0c993136ef
commit
1857760c1e
@ -12196,8 +12196,10 @@ DEFUN (show_ip_bgp_large_community,
|
||||
return CMD_WARNING;
|
||||
|
||||
if (argv_find(argv, argc, "AA:BB:CC", &idx)) {
|
||||
if (argv_find(argv, argc, "exact-match", &idx))
|
||||
if (argv_find(argv, argc, "exact-match", &idx)) {
|
||||
argc--;
|
||||
exact_match = 1;
|
||||
}
|
||||
return bgp_show_lcommunity(vty, bgp, argc, argv,
|
||||
exact_match, afi, safi, uj);
|
||||
} else
|
||||
|
Loading…
Reference in New Issue
Block a user