2005-01-25 Paul Jakma <paul@dishone.st>

* ospf6_asbr.c: Add "hsls" to the zroute_name const char array.
This commit is contained in:
paul 2005-01-25 01:19:28 +00:00
parent f83d18dce1
commit 8bfb0cba00
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2005-01-25 Paul Jakma <paul@dishone.st>
* ospf6_asbr.c: Add "hsls" to the zroute_name const char array.
2004-12-24 Hasso Tepper <hasso at quagga.net>
* *.c: Change level of debug messages to LOG_DEBUG.

View File

@ -52,10 +52,10 @@ unsigned char conf_debug_ospf6_asbr = 0;
const char *zroute_name[] =
{ "system", "kernel", "connected", "static",
"rip", "ripng", "ospf", "ospf6", "isis", "bgp", "unknown" };
"rip", "ripng", "ospf", "ospf6", "isis", "bgp", "hsls", "unknown" };
const char *zroute_abname[] =
{ "X", "K", "C", "S", "R", "R", "O", "O", "I", "B", "?" };
{ "X", "K", "C", "S", "R", "R", "O", "O", "I", "B", "H", "?" };
#define ZROUTE_NAME(x) \
(0 < (x) && (x) < ZEBRA_ROUTE_MAX ? zroute_name[(x)] : \