Commit 8502f385 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Reconsider routes even when their metric didn't decrease.

parent 8307d063
......@@ -585,8 +585,9 @@ trigger_route_change(struct route *route,
if(route->installed)
send_triggered_update(route, oldsrc, oldmetric);
} else {
if(route->metric < oldmetric)
consider_route(route);
/* Reconsider routes even when their metric didn't decrease,
they may not have been feasible before. */
consider_route(route);
}
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment