Commit ce9e9de6 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Also check for net->up in really_send_update.

We call start_message directly there.
parent 0f2d7725
...@@ -557,6 +557,9 @@ really_send_update(struct network *net, ...@@ -557,6 +557,9 @@ really_send_update(struct network *net,
{ {
int add_metric; int add_metric;
if(!net->up)
return;
add_metric = output_filter(address, prefix, plen, net->ifindex); add_metric = output_filter(address, prefix, plen, net->ifindex);
if(add_metric < INFINITY) { if(add_metric < INFINITY) {
......
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