summaryrefslogtreecommitdiff
path: root/zebra/zebra_srte.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2021-08-20 09:08:25 -0400
committerDonald Sharp <sharpd@nvidia.com>2021-09-02 10:33:23 -0400
commitf2595bd5057190f846b3bbff78bf44e538d46a2c (patch)
tree02e424ff4c66a84b2d8e0e330fc5e89958496f8e /zebra/zebra_srte.c
parenta7d2146a41fa0f0f3929f43c25b186a7f43b1d84 (diff)
zebra: Convert to `struct zebra_nhlfe` 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_srte.c')
-rw-r--r--zebra/zebra_srte.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/zebra_srte.c b/zebra/zebra_srte.c
index 6dd60af9fb..167edf81f7 100644
--- a/zebra/zebra_srte.c
+++ b/zebra/zebra_srte.c
@@ -99,7 +99,7 @@ struct zebra_sr_policy *zebra_sr_policy_find_by_name(char *name)
static int zebra_sr_policy_notify_update_client(struct zebra_sr_policy *policy,
struct zserv *client)
{
- const zebra_nhlfe_t *nhlfe;
+ const struct zebra_nhlfe *nhlfe;
struct stream *s;
uint32_t message = 0;
unsigned long nump = 0;
@@ -293,7 +293,7 @@ int zebra_sr_policy_validate(struct zebra_sr_policy *policy,
int zebra_sr_policy_bsid_install(struct zebra_sr_policy *policy)
{
struct zapi_srte_tunnel *zt = &policy->segment_list;
- zebra_nhlfe_t *nhlfe;
+ struct zebra_nhlfe *nhlfe;
if (zt->local_label == MPLS_LABEL_NONE)
return 0;