diff options
author | Martin Mares <mj@ucw.cz> | 1999-05-17 22:16:53 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1999-05-17 22:16:53 +0200 |
commit | 4f1a6d27b9a44f61329bc7b6779a0c645362e181 (patch) | |
tree | 4c77601930c97a225f42aaf9ce5dcc378459d1ec /nest/rt-dev.c | |
parent | 0e02abfd5770062768eeb4c75061b7d2f656489d (diff) | |
download | bird-4f1a6d27b9a44f61329bc7b6779a0c645362e181.tar bird-4f1a6d27b9a44f61329bc7b6779a0c645362e181.zip |
Kill remaining master_table relics in KRT code.
Make all protocols pass routing table to rte_update and rte_discard.
Diffstat (limited to 'nest/rt-dev.c')
-rw-r--r-- | nest/rt-dev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nest/rt-dev.c b/nest/rt-dev.c index 1225f1d..63548fc 100644 --- a/nest/rt-dev.c +++ b/nest/rt-dev.c @@ -36,7 +36,7 @@ dev_ifa_notify(struct proto *p, unsigned c, struct ifa *ad) debug("dev_if_notify: device shutdown: prefix not found\n"); return; } - rte_update(n, p, NULL); + rte_update(p->table, n, p, NULL); } else if (c & IF_CHANGE_UP) { @@ -61,7 +61,7 @@ dev_ifa_notify(struct proto *p, unsigned c, struct ifa *ad) e = rte_get_temp(a); e->net = n; e->pflags = 0; - rte_update(n, p, e); + rte_update(p->table, n, p, e); } } |