diff options
Diffstat (limited to 'ospf6d/ospf6_asbr.c')
-rw-r--r-- | ospf6d/ospf6_asbr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ospf6d/ospf6_asbr.c b/ospf6d/ospf6_asbr.c index 81edb60d..b9901293 100644 --- a/ospf6d/ospf6_asbr.c +++ b/ospf6d/ospf6_asbr.c @@ -47,10 +47,10 @@ unsigned char conf_debug_ospf6_asbr = 0; char *zroute_name[] = { "system", "kernel", "connected", "static", - "rip", "ripng", "ospf", "ospf6", "bgp", "unknown" }; + "rip", "ripng", "ospf", "ospf6", "isis", "bgp", "unknown" }; char *zroute_abname[] = -{ "X", "K", "C", "S", "R", "R", "O", "O", "B", "?" }; +{ "X", "K", "C", "S", "R", "R", "O", "O", "I", "B", "?" }; #define ZROUTE_NAME(x) \ (0 < (x) && (x) < ZEBRA_ROUTE_MAX ? zroute_name[(x)] : \ |