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:
David Lamparter 2016-09-21 12:30:00 +02:00 committed by Donald Sharp
parent b99c382167
commit bb4ac22a1f

View File

@ -625,7 +625,8 @@ ospfv3WwLsdbEntry (struct variable *v, oid *name, size_t *length,
int exact, size_t *var_len, WriteMethod **write_method)
{
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;
int len;
oid *offset;