Skip to content

Commit c24c9a0

Browse files
authored
Merge pull request #14334 from FRRouting/mergify/bp/stable/9.0/pr-14327
bgpd: Fix `show bgp all rpki notfound` (backport #14327)
2 parents d69b32e + 163d685 commit c24c9a0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

bgpd/bgp_route.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12958,6 +12958,8 @@ DEFPY(show_ip_bgp, show_ip_bgp_cmd,
1295812958
rpki_target_state = RPKI_VALID;
1295912959
else if (argv_find(argv, argc, "invalid", &idx))
1296012960
rpki_target_state = RPKI_INVALID;
12961+
else if (argv_find(argv, argc, "notfound", &idx))
12962+
rpki_target_state = RPKI_NOTFOUND;
1296112963
}
1296212964

1296312965
/* Display prefixes with matching version numbers */

0 commit comments

Comments
 (0)