diff options
| author | Russ White <russ@riw.us> | 2021-10-27 15:29:39 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-10-27 15:29:39 -0400 |
| commit | f727c6ae8a62be99bd5be5a191fbd7df455a35f0 (patch) | |
| tree | 9e9bde7f79993485caf03678351041c05379a81e /lib/if.c | |
| parent | f1506cf36b91014d920f82bbfe655651a2356141 (diff) | |
| parent | 0df2e1888b1e8011bc1e3ec6ed6c34a9e6fcaae9 (diff) | |
Merge pull request #9837 from idryzhov/cleanup-if-by-name-vrf-all
*: fix usage of if_lookup_by_name_all_vrf
Diffstat (limited to 'lib/if.c')
| -rw-r--r-- | lib/if.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -423,7 +423,7 @@ struct interface *if_lookup_by_name_vrf(const char *name, struct vrf *vrf) return RB_FIND(if_name_head, &vrf->ifaces_by_name, &if_tmp); } -struct interface *if_lookup_by_name_all_vrf(const char *name) +static struct interface *if_lookup_by_name_all_vrf(const char *name) { struct vrf *vrf; struct interface *ifp; |
