+2005-02-20 Hasso Tepper <hasso at quagga.net>
+
+ * rt_netlink.c: Don't show messages "ignoring message type 0x001[89]"
+ if we are not debugging.
+
2005-02-19 Paul Jakma <paul@dishone.st>
* zserv.c: (zebra_read_ipv6) replace the char * arithmetic with
static int
netlink_talk_filter (struct sockaddr_nl *snl, struct nlmsghdr *h)
{
- zlog_warn ("netlink_talk: ignoring message type 0x%04x", h->nlmsg_type);
+ if (IS_ZEBRA_DEBUG_KERNEL)
+ zlog_debug ("netlink_talk: ignoring message type 0x%04x", h->nlmsg_type);
return 0;
}