mirror of
https://git.freebsd.org/ports.git
synced 2025-07-04 19:09:16 -04:00
12 lines
630 B
Text
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;
|