diff options
author | Everton Marques <everton.marques@gmail.com> | 2009-08-11 15:48:02 -0300 |
---|---|---|
committer | David Lamparter <equinox@opensourcerouting.org> | 2015-02-04 06:07:49 +0100 |
commit | e96f0af2679e3c91518f62b3a86d811cafba1adc (patch) | |
tree | dc6d563472991c383e1437475d29d487de8d2974 /pimd/pimd.c | |
parent | 596470f2a410fb58109fd880f04362984ffd7c69 (diff) | |
download | quagga-e96f0af2679e3c91518f62b3a86d811cafba1adc.tar.bz2 quagga-e96f0af2679e3c91518f62b3a86d811cafba1adc.tar.xz |
[pim] Log physical interface up/down
[pim] Replace strerror with safe_strerror
[pim] Fix PIM socket removal from non-PIM interfaces
[pim] show ip igmp querier: left-align Querier string
[pim] Version up to 0.157
[pim] Recipe to re-sync with Quagga repository
[pim] Build vtysh in development script
Diffstat (limited to 'pimd/pimd.c')
-rw-r--r-- | pimd/pimd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pimd/pimd.c b/pimd/pimd.c index cbcd0648..f255a28f 100644 --- a/pimd/pimd.c +++ b/pimd/pimd.c @@ -72,7 +72,7 @@ void pim_init() if (!inet_aton(PIM_ALL_PIM_ROUTERS, &qpim_all_pim_routers_addr)) { zlog_err("%s %s: could not solve %s to group address: errno=%d: %s", __FILE__, __PRETTY_FUNCTION__, - PIM_ALL_PIM_ROUTERS, errno, strerror(errno)); + PIM_ALL_PIM_ROUTERS, errno, safe_strerror(errno)); zassert(0); return; } |