From: Martin Winter Date: Tue, 5 Dec 2017 04:02:49 +0000 (-0800) Subject: ospf6d: Fix gcc 7 warning X-Git-Tag: frr-3.0.3~4^2 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=a736eb9e039dfc60db22f8c97a0e3821ef2d8a07;p=mirror%2Ffrr.git ospf6d: Fix gcc 7 warning Originally fixed in master as part of commit 20a6c6f by David Lamparter Signed-off-by: Martin Winter --- 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) {