summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorhasso <hasso>2005-04-09 16:59:28 +0000
committerhasso <hasso>2005-04-09 16:59:28 +0000
commitf5a171b9e64ffec0a20cac080243b65329471b33 (patch)
tree7a83a403192e0194161e5f72227976365856ec26
parent87c51f0666321dd6fd3b88d155732a1d77e8064a (diff)
downloadquagga-f5a171b9e64ffec0a20cac080243b65329471b33.tar.bz2
quagga-f5a171b9e64ffec0a20cac080243b65329471b33.tar.xz
* rt_netlink.c: One tiny missing comma caused pointless debug messages
about IPv6 nexthops.
-rw-r--r--zebra/ChangeLog5
-rw-r--r--zebra/rt_netlink.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/zebra/ChangeLog b/zebra/ChangeLog
index 8c6f348c..87278b04 100644
--- a/zebra/ChangeLog
+++ b/zebra/ChangeLog
@@ -1,5 +1,10 @@
2005-04-09 Hasso Tepper <hasso at quagga.net>
+ * rt_netlink.c: One tiny missing comma caused pointless debug messages
+ about IPv6 nexthops.
+
+2005-04-09 Hasso Tepper <hasso at quagga.net>
+
* rt_netlink.c (netlink_parse_info): Fix warning. It's safe to cast
status to unsigned here, because we already checked that it isn't
negative or 0.
diff --git a/zebra/rt_netlink.c b/zebra/rt_netlink.c
index 830eb430..22908730 100644
--- a/zebra/rt_netlink.c
+++ b/zebra/rt_netlink.c
@@ -73,7 +73,7 @@ const char *nexthop_types_desc[] =
"IPv4 nexthop",
"IPv4 nexthop with ifindex",
"IPv4 nexthop with ifname",
- "IPv6 nexthop"
+ "IPv6 nexthop",
"IPv6 nexthop with ifindex",
"IPv6 nexthop with ifname",
"Null0 nexthop",