diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2025-04-09 09:59:06 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-09 09:59:06 +0200 |
| commit | 8418e57791eabc9feba637b69bd9ee35bed6860a (patch) | |
| tree | 48b9c05795135606782f9ec359c3f319f5d534dc /ospfd/ospf_packet.c | |
| parent | 1d426d99619b7818f4b63b52f83fadfe902b9854 (diff) | |
| parent | 27ba9956a15c17b7e8a6ba38aa8bbb4514fa90df (diff) | |
Merge pull request #17915 from mjstapp/compile_wshadow
Diffstat (limited to 'ospfd/ospf_packet.c')
| -rw-r--r-- | ospfd/ospf_packet.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ospfd/ospf_packet.c b/ospfd/ospf_packet.c index d35f0a1372..13bf947994 100644 --- a/ospfd/ospf_packet.c +++ b/ospfd/ospf_packet.c @@ -4055,11 +4055,11 @@ void ospf_ls_ack_send_direct(struct ospf_neighbor *nbr, struct ospf_lsa *lsa) * ignored. */ if (oi->type == OSPF_IFTYPE_POINTOMULTIPOINT && !oi->p2mp_non_broadcast) { - struct ospf_lsa_list_entry *ls_ack_list_entry; + struct ospf_lsa_list_entry *ack_list_entry; struct ospf_lsa *ack_queue_lsa; - frr_each (ospf_lsa_list, &oi->ls_ack_direct, ls_ack_list_entry) { - ack_queue_lsa = ls_ack_list_entry->lsa; + frr_each (ospf_lsa_list, &oi->ls_ack_direct, ack_list_entry) { + ack_queue_lsa = ack_list_entry->lsa; if ((lsa == ack_queue_lsa) || ((lsa->data->type == ack_queue_lsa->data->type) && (lsa->data->id.s_addr == |
