Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
static struct log_ref ferr_rip_err[] = {
{
- .code = RIP_ERR_PACKET,
+ .code = EC_RIP_PACKET,
.title = "RIP Packet Error",
.description = "RIP has detected a packet encode/decode issue",
.suggestion = "Gather log files from both sides and open a Issue"
#include "lib/ferr.h"
enum rip_log_refs {
- RIP_ERR_PACKET = RIP_FERR_START,
+ EC_RIP_PACKET = RIP_FERR_START,
RIP_ERR_CONFIG,
};
/* Check packet length. */
if (len < (RIP_HEADER_SIZE + RIP_RTE_SIZE)) {
- flog_err(RIP_ERR_PACKET,
+ flog_err(EC_RIP_PACKET,
"rip_auth_md5_set(): packet length %ld is less than minimum length.",
len);
return;