From 43289951b23e491510baf1cedfad884321e83c30 Mon Sep 17 00:00:00 2001 From: Benoît Ganne Date: Thu, 9 Sep 2021 11:58:28 +0200 Subject: ip: fix path MTU node errors definition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The path mtu node uses errors defined by ip fragmentation. Type: fix Change-Id: I1f173955919a4f555ab0309cd8201ec342a0ae92 Signed-off-by: Benoît Ganne --- src/vnet/ip/ip_frag.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/vnet/ip/ip_frag.c') diff --git a/src/vnet/ip/ip_frag.c b/src/vnet/ip/ip_frag.c index cafa9a66d6b..b9bc90dcc11 100644 --- a/src/vnet/ip/ip_frag.c +++ b/src/vnet/ip/ip_frag.c @@ -502,7 +502,7 @@ ip6_frag_do_fragment (vlib_main_t * vm, u32 from_bi, u16 mtu, return IP_FRAG_ERROR_NONE; } -static char *ip4_frag_error_strings[] = { +char *ip4_frag_error_strings[] = { #define _(sym,string) string, foreach_ip_frag_error #undef _ -- cgit 1.2.3-korg