diff options
author | Neale Ranns <nranns@cisco.com> | 2019-12-02 23:28:50 +0000 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-12-03 19:59:31 +0000 |
commit | 960eeea7ea48d91c1f2ec3a85a7a84f56619be2a (patch) | |
tree | 3ca930048e90cb1ff2b2c9115331d5de9005001c /src/vnet/mpls | |
parent | 9534696b4637185c9f296375e63c50d8976d153d (diff) |
fib: constify the adjacency in the rewrite nodes
Type: refactor
Signed-off-by: Neale Ranns <nranns@cisco.com>
Change-Id: I3aad20b35d89fc541fdf185096d71ca12b09a6e2
Diffstat (limited to 'src/vnet/mpls')
-rw-r--r-- | src/vnet/mpls/mpls_tunnel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/mpls/mpls_tunnel.c b/src/vnet/mpls/mpls_tunnel.c index b7bcbfd14f7..3ed77e63a6a 100644 --- a/src/vnet/mpls/mpls_tunnel.c +++ b/src/vnet/mpls/mpls_tunnel.c @@ -376,7 +376,7 @@ mpls_tunnel_admin_up_down (vnet_main_t * vnm, */ static void mpls_tunnel_fixup (vlib_main_t *vm, - ip_adjacency_t *adj, + const ip_adjacency_t *adj, vlib_buffer_t *b0, const void*data) { |