]> git.puffer.fish Git - matthieu/frr.git/commit
bgpd: remove error message for unkown afi/safi combination
authorDon Slice <dslice@cumulusnetworks.com>
Wed, 23 Oct 2019 16:30:28 +0000 (16:30 +0000)
committerDon Slice <dslice@cumulusnetworks.com>
Thu, 24 Oct 2019 11:29:40 +0000 (11:29 +0000)
commit8e5509b04b58ed58c0c4490ec6c1c709dcebc991
tree965cc994c422a5b0e5e73271ca0eb1a94b0f0f4c
parentf935dca78fd87e392eb8df6bc2f2892e90d22810
bgpd: remove error message for unkown afi/safi combination

Problem reported with error messages appearing in the log
complaining about invalid afi/safi combinations.  Determined
that the error messages were recently added in the function
that turns afi and safi values to strings.  Unfortunately,
the function is called from places using FOREACH_AFI_SAFI,
which spins thru every afi and safi number including some
that are not legal together (ipv4 evpn and l2vpn multicast
for example.)   This fix removes these error messages since
it is not necessarily an error to call it with invalid
combinations.

Ticket: CM-26883
Signed-off-by: Don Slice <dslice@cumulusnetworks.com>
bgpd/bgp_vty.c