diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-09-13 19:34:28 +0000 | 
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2018-09-13 19:34:28 +0000 | 
| commit | 450971aa994e68f7c62c4d45065223d5cfc4a22f (patch) | |
| tree | 0128a1e596823272333d8a6616dd2575e8d7c46b /zebra/ioctl.c | |
| parent | e914ccbe9cfb45bbb0ce61bb496e27df6b6136ba (diff) | |
*: LIB_[ERR|WARN] -> EC_LIB
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra/ioctl.c')
| -rw-r--r-- | zebra/ioctl.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/ioctl.c b/zebra/ioctl.c index 5c2380cdd7..87e98032a2 100644 --- a/zebra/ioctl.c +++ b/zebra/ioctl.c @@ -397,7 +397,7 @@ void if_get_flags(struct interface *ifp)  	ret = vrf_if_ioctl(SIOCGIFFLAGS, (caddr_t)&ifreq, ifp->vrf_id);  	if (ret < 0) { -		flog_err_sys(LIB_ERR_SYSTEM_CALL, +		flog_err_sys(EC_LIB_SYSTEM_CALL,  			     "vrf_if_ioctl(SIOCGIFFLAGS) failed: %s",  			     safe_strerror(errno));  		return; @@ -416,7 +416,7 @@ void if_get_flags(struct interface *ifp)  		/* Seems not all interfaces implement this ioctl */  		if (if_ioctl(SIOCGIFMEDIA, (caddr_t)&ifmr) < 0) -			flog_err_sys(LIB_ERR_SYSTEM_CALL, +			flog_err_sys(EC_LIB_SYSTEM_CALL,  				     "if_ioctl(SIOCGIFMEDIA) failed: %s",  				     safe_strerror(errno));  		else if (ifmr.ifm_status & IFM_AVALID) /* Link state is valid */  | 
