]> git.puffer.fish Git - mirror/frr.git/commitdiff
2005-01-25 Paul Jakma <paul@dishone.st>
authorpaul <paul>
Tue, 25 Jan 2005 01:19:28 +0000 (01:19 +0000)
committerpaul <paul>
Tue, 25 Jan 2005 01:19:28 +0000 (01:19 +0000)
* ospf6_asbr.c: Add "hsls" to the zroute_name const char array.

ospf6d/ChangeLog
ospf6d/ospf6_asbr.c

index 2b53ed51254c9ad25b6df699e70dfb2f92bcdd04..38c74dc2c4cae62ca5a919b42c9077032adb2102 100644 (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.
index 0cc2001ecc18e181a4a46f0f78f615151e2ded8d..c9fc5c1c4a7891dc19fba59b291ae25aeb8a3a9e 100644 (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)] :   \