summaryrefslogtreecommitdiffstats
path: root/nest/rt-table.c
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2010-11-14 07:00:55 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2010-11-14 07:00:55 +0100
commite6eee664723aa0e1d87eac65216cdf12636e3284 (patch)
tree4fe66fd531b53235fef9e63694fda50dd32f2204 /nest/rt-table.c
parent2ef9177a47e7137dd09b06a353a6e5f6e671c951 (diff)
downloadbird-e6eee664723aa0e1d87eac65216cdf12636e3284.tar
bird-e6eee664723aa0e1d87eac65216cdf12636e3284.zip
Rename net_{get,find}2 to net_{get,find}_cast
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r--nest/rt-table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c
index 5d17ca0..1303843 100644
--- a/nest/rt-table.c
+++ b/nest/rt-table.c
@@ -1838,8 +1838,8 @@ rt_show(struct rt_show_data *d)
}
else
{
- n = net_find2(d->table, d->prefix, d->pxlen, RTC_UNICAST);
- n2 = net_find2(d->table, d->prefix, d->pxlen, RTC_MULTICAST);
+ n = net_find_cast(d->table, d->prefix, d->pxlen, RTC_UNICAST);
+ n2 = net_find_cast(d->table, d->prefix, d->pxlen, RTC_MULTICAST);
}
if (n || n2)
{