diff options
| author | Mark Stapp <mjs@voltanet.io> | 2018-09-19 13:25:12 -0400 |
|---|---|---|
| committer | Mark Stapp <mjs@voltanet.io> | 2018-10-25 08:57:04 -0400 |
| commit | 25779064810c2c8d8d72e961a7f30d42db5b24a9 (patch) | |
| tree | d00560852ff3d803cf4420e435508b756659ca03 /zebra/rt_socket.c | |
| parent | 14c8b173d2a55804ba105c351774f374b3fd0820 (diff) | |
zebra: revise struct names to resolve review comments
Use standard type naming and remove use of typedef to resolve
some review comments.
Signed-off-by: Mark Stapp <mjs@voltanet.io>
Diffstat (limited to 'zebra/rt_socket.c')
| -rw-r--r-- | zebra/rt_socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/rt_socket.c b/zebra/rt_socket.c index 27a0eb26d2..99a7ca5d55 100644 --- a/zebra/rt_socket.c +++ b/zebra/rt_socket.c @@ -400,7 +400,7 @@ static int kernel_rtm(int cmd, const struct prefix *p, * Update or delete a prefix from the kernel, * using info from a dataplane context struct. */ -enum zebra_dplane_result kernel_route_update(dplane_ctx_h ctx) +enum zebra_dplane_result kernel_route_update(struct zebra_dplane_ctx *ctx) { enum zebra_dplane_result res = ZEBRA_DPLANE_REQUEST_SUCCESS; |
