From a736eb9e039dfc60db22f8c97a0e3821ef2d8a07 Mon Sep 17 00:00:00 2001 From: Martin Winter Date: Mon, 4 Dec 2017 20:02:49 -0800 Subject: [PATCH] ospf6d: Fix gcc 7 warning Originally fixed in master as part of commit 20a6c6f by David Lamparter Signed-off-by: Martin Winter --- ospf6d/ospf6_route.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ospf6d/ospf6_route.c b/ospf6d/ospf6_route.c index 43402f0c44..1c414b35ce 100644 --- a/ospf6d/ospf6_route.c +++ b/ospf6d/ospf6_route.c @@ -43,7 +43,7 @@ unsigned char conf_debug_ospf6_route = 0; static char *ospf6_route_table_name(struct ospf6_route_table *table) { - static char name[32]; + static char name[64]; switch (table->scope_type) { case OSPF6_SCOPE_TYPE_GLOBAL: { switch (table->table_type) { -- 2.39.5