diff options
author | paul <paul> | 2003-08-26 04:11:35 +0000 |
---|---|---|
committer | paul <paul> | 2003-08-26 04:11:35 +0000 |
commit | 8f94b0a0549b990a617ce11b31947330b86d0fa9 (patch) | |
tree | 54f5c3fc160342525a3d90ec38d031f7812534a3 | |
parent | 325ed79c7e31c707797bfacc5031517f5964904e (diff) | |
download | quagga-8f94b0a0549b990a617ce11b31947330b86d0fa9.tar.bz2 quagga-8f94b0a0549b990a617ce11b31947330b86d0fa9.tar.xz |
2003-08-26 Kunihiro <kunihiro@zebra.org>
* bgpd/bgp_route.c: fix maximum prefix comparison
-rw-r--r-- | bgpd/bgp_route.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c index bb6b1b18..8152f72e 100644 --- a/bgpd/bgp_route.c +++ b/bgpd/bgp_route.c @@ -868,7 +868,7 @@ int bgp_maximum_prefix_overflow (struct peer *peer, afi_t afi, safi_t safi) { if (CHECK_FLAG (peer->af_flags[afi][safi], PEER_FLAG_MAX_PREFIX) - && peer->pcount[afi][safi] >= peer->pmax[afi][safi]) + && 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", |