diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-08-09 14:12:15 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2022-08-10 07:15:31 -0400 |
| commit | 1548fbbc449583c6db859982d86fa2d30e6f66a4 (patch) | |
| tree | 5dbb6f2a636dd2ebf0728e4e826ec199d9faec5f /zebra/zebra_mpls.h | |
| parent | a310ebc114af2f211e493ec29817b3debab2561a (diff) | |
zebra: Remove unused return codes in zebra_mpls.c
There are some return codes for functions that
are not really used. Clean them up.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_mpls.h')
| -rw-r--r-- | zebra/zebra_mpls.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/zebra/zebra_mpls.h b/zebra/zebra_mpls.h index a7a955a80b..a114f01339 100644 --- a/zebra/zebra_mpls.h +++ b/zebra/zebra_mpls.h @@ -261,15 +261,15 @@ void zebra_mpls_print_fec(struct vty *vty, struct zebra_vrf *zvrf, * Handle zapi request to install/uninstall LSP and * (optionally) FEC-To-NHLFE (FTN) bindings. */ -int mpls_zapi_labels_process(bool add_p, struct zebra_vrf *zvrf, - const struct zapi_labels *zl); +void mpls_zapi_labels_process(bool add_p, struct zebra_vrf *zvrf, + const struct zapi_labels *zl); /* * Uninstall all NHLFEs bound to a single FEC. */ -int mpls_ftn_uninstall(struct zebra_vrf *zvrf, enum lsp_types_t type, - struct prefix *prefix, uint8_t route_type, - unsigned short route_instance); +void mpls_ftn_uninstall(struct zebra_vrf *zvrf, enum lsp_types_t type, + struct prefix *prefix, uint8_t route_type, + unsigned short route_instance); /* * Install/update a NHLFE for an LSP in the forwarding table. This may be |
