From 4f1a6d27b9a44f61329bc7b6779a0c645362e181 Mon Sep 17 00:00:00 2001 From: Martin Mares Date: Mon, 17 May 1999 20:16:53 +0000 Subject: Kill remaining master_table relics in KRT code. Make all protocols pass routing table to rte_update and rte_discard. --- proto/static/static.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'proto/static/static.c') diff --git a/proto/static/static.c b/proto/static/static.c index b136b31..d245be2 100644 --- a/proto/static/static.c +++ b/proto/static/static.c @@ -40,7 +40,7 @@ static_install(struct proto *p, struct static_route *r, struct iface *ifa) e = rte_get_temp(aa); e->net = n; e->pflags = 0; - rte_update(n, p, e); + rte_update(p->table, n, p, e); } static void @@ -51,7 +51,7 @@ static_remove(struct proto *p, struct static_route *r) DBG("Removing static route %I/%d\n", r->net, r->masklen); n = net_find(p->table, r->net, r->masklen); if (n) - rte_update(n, p, NULL); + rte_update(p->table, n, p, NULL); } static int -- cgit v1.2.3