diff options
| author | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2023-01-06 09:27:18 -0600 | 
|---|---|---|
| committer | Jafar Al-Gharaibeh <jafar@atcorp.com> | 2023-01-06 09:27:18 -0600 | 
| commit | 8935b0fac623c84665282e81b59302b02388ad48 (patch) | |
| tree | f0bef0903a6df36680a8e5a3c0c9d809ab5cd6c1 /ospfd/ospf_packet.c | |
| parent | b15826e81bfd9cf8325720abb31e2a7c1261a647 (diff) | |
ospfd: report the router IP with Opaque capability mismatch
Signed-off-by: Jafar Al-Gharaibeh <jafar@atcorp.com>
Diffstat (limited to 'ospfd/ospf_packet.c')
| -rw-r--r-- | ospfd/ospf_packet.c | 7 | 
1 files changed, 4 insertions, 3 deletions
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;  		}  | 
