Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
donaldsharp committed Sep 25, 2024
1 parent a8c2bb9 commit c368d77
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions zebra/zebra_vrf.c
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,6 @@ vrf_id_t zebra_vrf_lookup_by_table(uint32_t table_id, ns_id_t ns_id)
RB_FOREACH (vrf, vrf_id_head, &vrfs_by_id) {
zvrf = vrf->info;

zlog_debug("Looking at %s for table_id", zvrf_name(zvrf));
if (zvrf == NULL)
continue;
/* case vrf with netns : match the netnsid */
Expand All @@ -411,7 +410,6 @@ vrf_id_t zebra_vrf_lookup_by_table(uint32_t table_id, ns_id_t ns_id)
if (zvrf->table_id != table_id)
continue;

zlog_debug("FOUND");
return zvrf_id(zvrf);
}
}
Expand Down

0 comments on commit c368d77

Please sign in to comment.