From: Jafar Al-Gharaibeh Date: Fri, 6 Jan 2023 15:27:18 +0000 (-0600) Subject: ospfd: report the router IP with Opaque capability mismatch X-Git-Tag: base_8.5~96^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=refs%2Fpull%2F12605%2Fhead;p=mirror%2Ffrr.git ospfd: report the router IP with Opaque capability mismatch Signed-off-by: Jafar Al-Gharaibeh --- diff --git a/ospfd/ospf_packet.c b/ospfd/ospf_packet.c index 0cb9d02725..b22fe5d99b 100644 --- a/ospfd/ospf_packet.c +++ b/ospfd/ospf_packet.c @@ -1787,9 +1787,10 @@ static struct list *ospf_ls_upd_list_lsa(struct ospf_neighbor *nbr, continue; } } else if (IS_OPAQUE_LSA(lsah->type)) { - flog_warn(EC_OSPF_PACKET, - "LSA[Type%d:%pI4]: Opaque capability mismatch?", - lsah->type, &lsah->id); + flog_warn( + EC_OSPF_PACKET, + "LSA[Type%d:%pI4] from %pI4: Opaque capability mismatch?", + lsah->type, &lsah->id, &lsah->adv_router); continue; }