Commit 0da562a7 authored by Ondrej Zajicek's avatar Ondrej Zajicek
Browse files

Fixes error message in 'show route' cmd.

Message 'Network not in table' was not reported if a network node without
any routes was found in a routing table.
parent dd5ef279
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -2409,11 +2409,12 @@ rt_show(struct rt_show_data *d)
	n = net_route(d->table, d->prefix, d->pxlen);
      else
	n = net_find(d->table, d->prefix, d->pxlen);

      if (n)
	{
	rt_show_net(this_cli, n, d);

      if (d->rt_counter)
	cli_msg(0, "");
	}
      else
	cli_msg(8001, "Network not in table");
    }