diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2021-08-19 16:13:39 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2021-09-02 10:33:22 -0400 |
| commit | c172c032efb0ed30c90b8c885b620ec7d33bf20e (patch) | |
| tree | 01e3ee3ab1716e31cc93beffd6271ebfa138eaf8 /zebra/zebra_vxlan.c | |
| parent | f6371c343a25f9a6a17aff38a3d35d14ca0f6bde (diff) | |
zebra: Convert to `struct zebra_vtep` as per our internal standard
We do not use typedef's to talk about structures as per our standard.
Fixing.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_vxlan.c')
| -rw-r--r-- | zebra/zebra_vxlan.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zebra/zebra_vxlan.c b/zebra/zebra_vxlan.c index 574a25ce78..d2cb8da9aa 100644 --- a/zebra/zebra_vxlan.c +++ b/zebra/zebra_vxlan.c @@ -3938,7 +3938,7 @@ int zebra_vxlan_check_readd_vtep(struct interface *ifp, struct zebra_l2info_vxlan *vxl; vni_t vni; struct zebra_evpn *zevpn = NULL; - zebra_vtep_t *zvtep = NULL; + struct zebra_vtep *zvtep = NULL; zif = ifp->info; assert(zif); @@ -4271,7 +4271,7 @@ void zebra_vxlan_remote_vtep_del(vrf_id_t vrf_id, vni_t vni, struct in_addr vtep_ip) { struct zebra_evpn *zevpn; - zebra_vtep_t *zvtep; + struct zebra_vtep *zvtep; struct interface *ifp; struct zebra_if *zif; struct zebra_vrf *zvrf; @@ -4337,7 +4337,7 @@ void zebra_vxlan_remote_vtep_add(vrf_id_t vrf_id, vni_t vni, struct zebra_evpn *zevpn; struct interface *ifp; struct zebra_if *zif; - zebra_vtep_t *zvtep; + struct zebra_vtep *zvtep; struct zebra_vrf *zvrf; if (!is_evpn_enabled()) { |
