diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2022-02-24 14:44:55 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-24 14:44:55 -0500 |
| commit | 41ff140670e1c1a0cfbea682000a1cfe3a0cc1a0 (patch) | |
| tree | 116327ea6a0448af4014bb56731cca51458635b3 | |
| parent | 7bf63db79b7848b73e1cef49f3496038644bea16 (diff) | |
| parent | c16241898ae397ea6129111eea259850a6c9a04b (diff) | |
Merge pull request #10650 from rgirada/ospf_ei
ospfd: NULL passed instead of ei pointer in external lsa origination
| -rw-r--r-- | ospfd/ospf_lsa.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_lsa.c b/ospfd/ospf_lsa.c index 3eb91d0ebc..48751dfba8 100644 --- a/ospfd/ospf_lsa.c +++ b/ospfd/ospf_lsa.c @@ -2353,7 +2353,7 @@ void ospf_external_lsa_rid_change(struct ospf *ospf) continue; if (!ospf_external_lsa_originate(ospf, - NULL)) + ei)) flog_warn( EC_OSPF_LSA_INSTALL_FAILURE, "LSA: AS-external-LSA was not originated."); |
