diff options
Diffstat (limited to 'lib/if.h')
-rw-r--r-- | lib/if.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -298,7 +298,7 @@ DECLARE_QOBJ_TYPE(interface) #define IFNAME_RB_INSERT(vrf, ifp) \ if (RB_INSERT(if_name_head, &vrf->ifaces_by_name, (ifp))) \ flog_err( \ - LIB_ERR_INTERFACE, \ + EC_LIB_INTERFACE, \ "%s(%s): corruption detected -- interface with this " \ "name exists already in VRF %u!", \ __func__, (ifp)->name, (ifp)->vrf_id); @@ -306,7 +306,7 @@ DECLARE_QOBJ_TYPE(interface) #define IFNAME_RB_REMOVE(vrf, ifp) \ if (RB_REMOVE(if_name_head, &vrf->ifaces_by_name, (ifp)) == NULL) \ flog_err( \ - LIB_ERR_INTERFACE, \ + EC_LIB_INTERFACE, \ "%s(%s): corruption detected -- interface with this " \ "name doesn't exist in VRF %u!", \ __func__, (ifp)->name, (ifp)->vrf_id); @@ -314,7 +314,7 @@ DECLARE_QOBJ_TYPE(interface) #define IFINDEX_RB_INSERT(vrf, ifp) \ if (RB_INSERT(if_index_head, &vrf->ifaces_by_index, (ifp))) \ flog_err( \ - LIB_ERR_INTERFACE, \ + EC_LIB_INTERFACE, \ "%s(%u): corruption detected -- interface with this " \ "ifindex exists already in VRF %u!", \ __func__, (ifp)->ifindex, (ifp)->vrf_id); @@ -322,7 +322,7 @@ DECLARE_QOBJ_TYPE(interface) #define IFINDEX_RB_REMOVE(vrf, ifp) \ if (RB_REMOVE(if_index_head, &vrf->ifaces_by_index, (ifp)) == NULL) \ flog_err( \ - LIB_ERR_INTERFACE, \ + EC_LIB_INTERFACE, \ "%s(%u): corruption detected -- interface with this " \ "ifindex doesn't exist in VRF %u!", \ __func__, (ifp)->ifindex, (ifp)->vrf_id); |