mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-09 19:13:58 +00:00
ospf6d: fix fallout from ifindex_t change
Only one of these variables is in fact an interface index... (this fixes -Werror build.) Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
This commit is contained in:
parent
b99c382167
commit
bb4ac22a1f
@ -625,7 +625,8 @@ ospfv3WwLsdbEntry (struct variable *v, oid *name, size_t *length,
|
|||||||
int exact, size_t *var_len, WriteMethod **write_method)
|
int exact, size_t *var_len, WriteMethod **write_method)
|
||||||
{
|
{
|
||||||
struct ospf6_lsa *lsa = NULL;
|
struct ospf6_lsa *lsa = NULL;
|
||||||
ifindex_t ifindex, area_id, id, instid, adv_router;
|
ifindex_t ifindex;
|
||||||
|
uint32_t area_id, id, instid, adv_router;
|
||||||
u_int16_t type;
|
u_int16_t type;
|
||||||
int len;
|
int len;
|
||||||
oid *offset;
|
oid *offset;
|
||||||
|
Loading…
Reference in New Issue
Block a user