diff options
-rw-r--r-- | doc/bird.sgml | 7 | ||||
-rw-r--r-- | nest/rt-table.c | 9 |
2 files changed, 8 insertions, 8 deletions
diff --git a/doc/bird.sgml b/doc/bird.sgml index 10a09025..2ef3a24b 100644 --- a/doc/bird.sgml +++ b/doc/bird.sgml @@ -3413,11 +3413,10 @@ versions of BIRD: <sect>Getting more help <p>If you use BIRD, you're welcome to join the bird-users mailing list -(<HTMLURL URL="mailto:bird-users@bird.network.cz" name="bird-users@bird.network.cz">) +(<HTMLURL URL="mailto:bird-users@network.cz" name="bird-users@network.cz">) where you can share your experiences with the other users and consult -your problems with the authors. To subscribe to the list, just send a -<tt/subscribe bird-users/ command in a body of a mail to -(<HTMLURL URL="mailto:majordomo@bird.network.cz" name="majordomo@bird.network.cz">). +your problems with the authors. To subscribe to the list, visit +<HTMLURL URL="http://bird.network.cz/?m_list" name="http://bird.network.cz/?m_list">. The home page of BIRD can be found at <HTMLURL URL="http://bird.network.cz/" name="http://bird.network.cz/">. <p>BIRD is a relatively young system and it probably contains some bugs. You can diff --git a/nest/rt-table.c b/nest/rt-table.c index 59fd0711..125f1d18 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -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); - cli_msg(0, ""); - } + rt_show_net(this_cli, n, d); + + if (d->rt_counter) + cli_msg(0, ""); else cli_msg(8001, "Network not in table"); } |