ports/net/quagga/files/patch-cvs-1-prefix_buf
Sergey Matveychuk b7d737ee9d - Update to 0.99.9 + patches from quagga CVS
Approved by:	maintainer
2007-09-24 07:59:16 +00:00

12 lines
630 B
Text

--- zebra/rt_socket.c 13 Aug 2007 16:03:07 -0000 1.13
+++ zebra/rt_socket.c 12 Sep 2007 13:31:03 -0000
@@ -207,6 +207,9 @@
case ZEBRA_ERR_RTNOEXIST:
case ZEBRA_ERR_RTUNREACH:
default:
+ /* This point is reachable regardless of debugging mode. */
+ if (!IS_ZEBRA_DEBUG_RIB)
+ inet_ntop (AF_INET, &p->u.prefix, prefix_buf, INET_ADDRSTRLEN);
zlog_err ("%s: %s/%d: rtm_write() unexpectedly returned %d for command %s",
__func__, prefix_buf, p->prefixlen, error, LOOKUP (rtm_type_str, cmd));
break;