summaryrefslogtreecommitdiff
path: root/ospfd/ospf_ia.c
diff options
context:
space:
mode:
Diffstat (limited to 'ospfd/ospf_ia.c')
-rw-r--r--ospfd/ospf_ia.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/ospfd/ospf_ia.c b/ospfd/ospf_ia.c
index a701e8c9..6a8c3c63 100644
--- a/ospfd/ospf_ia.c
+++ b/ospfd/ospf_ia.c
@@ -464,13 +464,11 @@ ospf_update_router_route (struct ospf *ospf,
if ((ospf->backbone == NULL) &&
(ospf->abr_type != OSPF_ABR_SHORTCUT))
-
- /* no BB area, not Shortcut ABR, exiting */
- return;
-
- or = ospf_find_asbr_route_through_area (rtrs, p, ospf->backbone);
-
- if (or == NULL)
+ return; /* no BB area, not Shortcut ABR, exiting */
+
+ /* find the backbone route, if possible */
+ if ((ospf->backbone == NULL)
+ || !(or = ospf_find_asbr_route_through_area (rtrs, p, ospf->backbone)))
{
if (ospf->abr_type != OSPF_ABR_SHORTCUT)