+2005-08-05 Hasso Tepper <hasso at quagga.net>
+
+ * ospf_zebra.c: Don't assert/stop before type == ZEBRA_ROUTE_MAX if
+ dealing with routemaps. There is ospf->route_map[ZEBRA_ROUTE_MAX]
+ for default-information.
+
2005-07-26 Paul Jakma <paul.jakma@sun.com>
* ospf_abr.c: (ospf_abr_announce_network_to_area) SET_FLAG
struct ospf *ospf;
type = (intptr_t)THREAD_ARG (thread);
- assert (type < ZEBRA_ROUTE_MAX);
+ assert (type <= ZEBRA_ROUTE_MAX);
rt = EXTERNAL_INFO (type);
return;
/* Update distribute-list, and apply filter. */
- for (type = 0; type < ZEBRA_ROUTE_MAX; type++)
+ for (type = 0; type <= ZEBRA_ROUTE_MAX; type++)
{
if (ROUTEMAP (ospf, type) != NULL)
{
continue;
}
+ /* There is place for route-map for default-information (ZEBRA_ROUTE_MAX),
+ * but no distribute list. */
+ if (type == ZEBRA_ROUTE_MAX)
+ break;
if (DISTRIBUTE_NAME (ospf, type))
{
/* Update all route-maps which are used as redistribution filters.
* They might use prefix-list.
*/
- for (type = 0; type < ZEBRA_ROUTE_MAX; type++)
+ for (type = 0; type <= ZEBRA_ROUTE_MAX; type++)
{
if (ROUTEMAP (ospf, type) != NULL)
{