diff options
| author | Igor Ryzhov <iryzhov@nfware.com> | 2021-06-23 18:35:13 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-23 18:35:13 +0300 |
| commit | 1c06b80f0442f5a32c1c023e71d235d95e384640 (patch) | |
| tree | 754ae9358518c6666c261e92e225c8ad34d5a100 /ospf6d/ospf6_interface.c | |
| parent | 43d985e4144f1ec2bbdafe89b0c1c7129af3c2c1 (diff) | |
| parent | 40699728315d3c7a79059e55a7921308c80eb23d (diff) | |
Merge pull request #8904 from rameshabhinay/ospf6_show
ospf6d: Show neighbor displays twice for every neighbor.
Diffstat (limited to 'ospf6d/ospf6_interface.c')
| -rw-r--r-- | ospf6d/ospf6_interface.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c index edf9490119..553967e2e3 100644 --- a/ospf6d/ospf6_interface.c +++ b/ospf6d/ospf6_interface.c @@ -1632,6 +1632,9 @@ void ospf6_interface_start(struct ospf6_interface *oi) if (oi->area_id_format == OSPF6_AREA_FMT_UNSET) return; + if (oi->area) + return; + ospf6 = ospf6_lookup_by_vrf_id(oi->interface->vrf_id); if (!ospf6) return; |
