diff options
| author | David Lamparter <equinox@diac24.net> | 2019-09-17 16:15:32 +0200 |
|---|---|---|
| committer | David Lamparter <equinox@diac24.net> | 2019-09-17 16:15:32 +0200 |
| commit | 84eb735560da869f527706b866d4d16ad3ee5549 (patch) | |
| tree | 0a525d840bd43c1ff27dfa474c5d1d737591736d /ospf6d/ospf6_interface.c | |
| parent | b6534e248a22fa738c16bfccfdca3bec9ce721ea (diff) | |
ospf6d: interface state needs update even w/o area
We can't skip reading interface state if there's no area yet, we'll be
missing information later when the interface is configured.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'ospf6d/ospf6_interface.c')
| -rw-r--r-- | ospf6d/ospf6_interface.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ospf6d/ospf6_interface.c b/ospf6d/ospf6_interface.c index 692c84ad08..8fd2755500 100644 --- a/ospf6d/ospf6_interface.c +++ b/ospf6d/ospf6_interface.c @@ -355,8 +355,6 @@ void ospf6_interface_state_update(struct interface *ifp) oi = (struct ospf6_interface *)ifp->info; if (oi == NULL) return; - if (oi->area == NULL) - return; if (CHECK_FLAG(oi->flag, OSPF6_INTERFACE_DISABLE)) return; |
