From f2595bd5057190f846b3bbff78bf44e538d46a2c Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 20 Aug 2021 09:08:25 -0400 Subject: 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 --- zebra/zebra_mpls_openbsd.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'zebra/zebra_mpls_openbsd.c') diff --git a/zebra/zebra_mpls_openbsd.c b/zebra/zebra_mpls_openbsd.c index 74b1e37278..cdf34936c0 100644 --- a/zebra/zebra_mpls_openbsd.c +++ b/zebra/zebra_mpls_openbsd.c @@ -44,7 +44,7 @@ struct { } kr_state; static int kernel_send_rtmsg_v4(int action, mpls_label_t in_label, - const zebra_nhlfe_t *nhlfe) + const struct zebra_nhlfe *nhlfe) { struct iovec iov[5]; struct rt_msghdr hdr; @@ -136,7 +136,7 @@ static int kernel_send_rtmsg_v4(int action, mpls_label_t in_label, #endif static int kernel_send_rtmsg_v6(int action, mpls_label_t in_label, - const zebra_nhlfe_t *nhlfe) + const struct zebra_nhlfe *nhlfe) { struct iovec iov[5]; struct rt_msghdr hdr; @@ -240,7 +240,7 @@ static int kernel_send_rtmsg_v6(int action, mpls_label_t in_label, static int kernel_lsp_cmd(struct zebra_dplane_ctx *ctx) { const struct nhlfe_list_head *head; - const zebra_nhlfe_t *nhlfe; + const struct zebra_nhlfe *nhlfe; const struct nexthop *nexthop = NULL; unsigned int nexthop_num = 0; int action; -- cgit v1.2.3