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 | |
parent | Merge pull request #4993 from ton31337/fix/remove_trailing_whitespaces (diff) | |
download | frr-84eb735560da869f527706b866d4d16ad3ee5549.tar.xz frr-84eb735560da869f527706b866d4d16ad3ee5549.zip |
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')
-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 692c84ad0..8fd275550 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; |