diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-08-03 18:03:29 +0000 |
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-08-14 20:02:05 +0000 |
| commit | af4c27286d8eb3f347ff431a17a47a8d07cd8976 (patch) | |
| tree | caf5eae55c21f72baec4945cdb2cbc333d99f916 /zebra/if_ioctl.c | |
| parent | fa8b3ca66abee50e57034ef594883011f302057b (diff) | |
*: rename zlog_fer -> flog_err
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra/if_ioctl.c')
| -rw-r--r-- | zebra/if_ioctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/zebra/if_ioctl.c b/zebra/if_ioctl.c index 7045d51283..3e7a87d0a2 100644 --- a/zebra/if_ioctl.c +++ b/zebra/if_ioctl.c @@ -176,14 +176,14 @@ static int if_getaddrs(void) ret = getifaddrs(&ifap); if (ret != 0) { - zlog_ferr(LIB_ERR_SYSTEM_CALL, "getifaddrs(): %s", + flog_err(LIB_ERR_SYSTEM_CALL, "getifaddrs(): %s", safe_strerror(errno)); return -1; } for (ifapfree = ifap; ifap; ifap = ifap->ifa_next) { if (ifap->ifa_addr == NULL) { - zlog_ferr( + flog_err( LIB_ERR_INTERFACE, "%s: nonsensical ifaddr with NULL ifa_addr, ifname %s", __func__, @@ -193,7 +193,7 @@ static int if_getaddrs(void) ifp = if_lookup_by_name(ifap->ifa_name, VRF_DEFAULT); if (ifp == NULL) { - zlog_ferr(LIB_ERR_INTERFACE, + flog_err(LIB_ERR_INTERFACE, "if_getaddrs(): Can't lookup interface %s\n", ifap->ifa_name); continue; |
