diff --git a/bgpd/bgp_route.c b/bgpd/bgp_route.c index fb2eb10dd9..48bf255994 100644 --- a/bgpd/bgp_route.c +++ b/bgpd/bgp_route.c @@ -12183,6 +12183,12 @@ DEFUN (bgp_damp_set, max = 4 * half; } + /* + * These can't be 0 but our SA doesn't understand the + * way our cli is constructed + */ + assert(reuse); + assert(half); if (suppress < reuse) { vty_out(vty, "Suppress value cannot be less than reuse value \n");