Merge branch 'frr/pull/212' ("bgpd: remove unnecessary parens in compare")

Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
This commit is contained in:
David Lamparter 2017-02-17 21:32:54 +01:00
commit 6f58043b63

View File

@ -2872,7 +2872,7 @@ bgp_packet_mpattr_prefix (struct stream *s, afi_t afi, safi_t safi,
stream_put (s, prd->val, 8);
stream_put (s, &p->u.prefix, PSIZE (p->prefixlen));
}
else if ((safi == SAFI_EVPN))
else if (safi == SAFI_EVPN)
{
bgp_packet_mpattr_route_type_5(s, p, prd, tag, attr);
}