diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2011-06-26 22:25:09 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2011-06-26 22:32:05 +0200 |
commit | 6370d6f61b30b2390727eee8136e0e575dff609f (patch) | |
tree | 7c7cd0e5a1bcd5ea179516f72e82c7cf5dd7ad0a /nest | |
parent | e08d2ff08e4cff4bec38878e084fee7666caaaf2 (diff) | |
download | bird-6370d6f61b30b2390727eee8136e0e575dff609f.tar bird-6370d6f61b30b2390727eee8136e0e575dff609f.zip |
Fix route types in rta_show().
Diffstat (limited to 'nest')
-rw-r--r-- | nest/rt-attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-attr.c b/nest/rt-attr.c index c1f9c79..5a7dd09 100644 --- a/nest/rt-attr.c +++ b/nest/rt-attr.c @@ -831,7 +831,7 @@ void rta_show(struct cli *c, rta *a, ea_list *eal) { static char *src_names[] = { "dummy", "static", "inherit", "device", "static-device", "redirect", - "RIP", "OSPF", "OSPF-ext", "OSPF-IA", "OSPF-boundary", "BGP" }; + "RIP", "OSPF", "OSPF-IA", "OSPF-E1", "OSPF-E2", "BGP", "pipe" }; static char *cast_names[] = { "unicast", "broadcast", "multicast", "anycast" }; int i; byte buf[EA_FORMAT_BUF_SIZE]; |