mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-08 07:37:29 +00:00
ospfd: fix wrong argv index in the "show ip ospf neighbor" command
Fixes Issue #3544. Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
This commit is contained in:
parent
71c4e0c59b
commit
f4f4b6bff5
@ -5162,12 +5162,15 @@ DEFUN (show_ip_ospf_neighbor_id,
|
|||||||
bool uj = use_json(argc, argv);
|
bool uj = use_json(argc, argv);
|
||||||
struct listnode *node = NULL;
|
struct listnode *node = NULL;
|
||||||
int ret = CMD_SUCCESS;
|
int ret = CMD_SUCCESS;
|
||||||
|
int idx_router_id = 0;
|
||||||
|
|
||||||
|
argv_find(argv, argc, "A.B.C.D", &idx_router_id);
|
||||||
|
|
||||||
for (ALL_LIST_ELEMENTS_RO(om->ospf, node, ospf)) {
|
for (ALL_LIST_ELEMENTS_RO(om->ospf, node, ospf)) {
|
||||||
if (!ospf->oi_running)
|
if (!ospf->oi_running)
|
||||||
continue;
|
continue;
|
||||||
ret = show_ip_ospf_neighbor_id_common(vty, ospf, 0, argv, uj,
|
ret = show_ip_ospf_neighbor_id_common(vty, ospf, idx_router_id,
|
||||||
0);
|
argv, uj, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user