diff options
author | Martin Mares <mj@ucw.cz> | 1998-10-18 22:24:41 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 1998-10-18 22:24:41 +0000 |
commit | 4c45595e3bb9f0b605e3102742831dad8915b309 (patch) | |
tree | e797e093c90d52cdb36cb53215b2f9fb0643a4c1 /nest/rt-table.c | |
parent | ab3a76a382745e0195b213c6d87ddc0e3cabd690 (diff) |
o FIB flags now available for FIB users.
o struct network: FIB flags used for kernel syncing.
o struct network: `next' field deleted (historical relic).
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r-- | nest/rt-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c index 0b8b7934..f278c517 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -21,7 +21,7 @@ rte_init(struct fib_node *N) { net *n = (net *) N; - n->next = NULL; + N->flags = 0; n->routes = NULL; } |