diff options
| author | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-07-03 00:27:14 +0000 | 
|---|---|---|
| committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2019-07-03 00:27:14 +0000 | 
| commit | f203510a7a6ac7a2e6babc0b926ad98076ecdaa8 (patch) | |
| tree | 74726a6a24bb0885c214fa151c2122e017dda535 /zebra/irdp_packet.c | |
| parent | db9f2ddde2f2e0f131c2f7299642c777c5aeb043 (diff) | |
zebra: remove bs irdp error code
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'zebra/irdp_packet.c')
| -rw-r--r-- | zebra/irdp_packet.c | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/zebra/irdp_packet.c b/zebra/irdp_packet.c index 2804787620..f6fe6bbf1e 100644 --- a/zebra/irdp_packet.c +++ b/zebra/irdp_packet.c @@ -136,10 +136,10 @@ static void parse_irdp_packet(char *p, int len, struct interface *ifp)  		return;  	if (icmp->code != 0) { -		flog_warn(EC_ZEBRA_IRDP_BAD_TYPE_CODE, -			  "IRDP: RX packet type %d from %s. Bad ICMP type code," -			  " silently ignored", -			  icmp->type, inet_ntoa(src)); +		flog_warn( +			EC_ZEBRA_IRDP_BAD_TYPE_CODE, +			"IRDP: RX packet type %d from %s. Bad ICMP type code, silently ignored", +			icmp->type, inet_ntoa(src));  		return;  	} @@ -174,8 +174,8 @@ static void parse_irdp_packet(char *p, int len, struct interface *ifp)  	default:  		flog_warn( -			EC_ZEBRA_IRDP_BAD_TYPE, -			"IRDP: RX type %d from %s. Bad ICMP type, silently ignored", +			EC_ZEBRA_IRDP_BAD_TYPE_CODE, +			"IRDP: RX packet type %d from %s. Bad ICMP type code, silently ignored",  			icmp->type, inet_ntoa(src));  	}  }  | 
