* bgpd/bgp_route.c: Unrevert the revert of the possible first fix
for maximum-prefix.
{
if (CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_MAX_PREFIX))
{
- /* Once we should revert this for future work. */
- if (peer->pcount[afi][safi] >= peer->pmax[afi][safi])
+ if (peer->pcount[afi][safi] > peer->pmax[afi][safi])
{
zlog (peer->log, LOG_INFO,
"MAXPFXEXCEED: No. of prefix received from %s (afi %d): %ld exceed limit %ld", peer->host, afi, peer->pcount[afi][safi], peer->pmax[afi][safi]);