From: Chirag Shah Date: Wed, 6 Sep 2017 22:11:41 +0000 (-0700) Subject: ospfd: fix clang warning & ci-ospf test X-Git-Tag: frr-4.0-dev~249^2~5 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=c0f3f7cdf8be77afc6acf893614a46a8cc22929d;p=mirror%2Ffrr.git ospfd: fix clang warning & ci-ospf test Signed-off-by: Chirag Shah --- diff --git a/ospfd/ospf_apiserver.c b/ospfd/ospf_apiserver.c index 3b9d67af81..252a5df0fd 100644 --- a/ospfd/ospf_apiserver.c +++ b/ospfd/ospf_apiserver.c @@ -1376,7 +1376,7 @@ struct ospf_lsa *ospf_apiserver_opaque_lsa_new(struct ospf_area *area, struct ospf *ospf; - if (oi->ospf) + if (oi && oi->ospf) ospf = oi->ospf; else ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT); diff --git a/ospfd/ospf_vty.c b/ospfd/ospf_vty.c index 062cf74c22..d38a4ee737 100644 --- a/ospfd/ospf_vty.c +++ b/ospfd/ospf_vty.c @@ -8245,7 +8245,7 @@ static void show_ip_ospf_route_router(struct vty *vty, struct ospf *ospf, struct listnode *node; struct ospf_path *path; - /*vty_out(vty, "============ OSPF router routing table =============\n");*/ + vty_out(vty, "============ OSPF router routing table =============\n"); for (rn = route_top(rtrs); rn; rn = route_next(rn)) if (rn->info) { int flag = 0; @@ -8396,7 +8396,6 @@ DEFUN (show_ip_ospf_border_routers, int ret = CMD_SUCCESS; int inst = 0; int idx_vrf = 0; - int count = 0; if (argv_find(argv, argc, "vrf", &idx_vrf)) { vrf_name = argv[idx_vrf + 1]->arg; @@ -8408,10 +8407,6 @@ DEFUN (show_ip_ospf_border_routers, for (ALL_LIST_ELEMENTS_RO(om->ospf, node, ospf)) { if (!ospf->oi_running) continue; - count++; - if (count == 1) - vty_out(vty, - "============ OSPF router routing table =============\n"); ret = show_ip_ospf_border_routers_common(vty, ospf); @@ -8421,7 +8416,6 @@ DEFUN (show_ip_ospf_border_routers, if (ospf == NULL || !ospf->oi_running) return CMD_SUCCESS; - vty_out(vty, "============ OSPF router routing table =============\n"); ret = show_ip_ospf_border_routers_common(vty, ospf); } } else { @@ -8429,7 +8423,6 @@ DEFUN (show_ip_ospf_border_routers, ospf = ospf_lookup_by_vrf_id(VRF_DEFAULT); if (ospf == NULL || !ospf->oi_running) return CMD_SUCCESS; - vty_out(vty, "============ OSPF router routing table =============\n"); ret = show_ip_ospf_border_routers_common(vty, ospf); }