diff options
author | Martin Mares <mj@ucw.cz> | 2000-05-04 20:30:36 +0000 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2000-05-04 20:30:36 +0000 |
commit | 93a786cb034fdd18b8131a16a6ea3d1cd9bd00de (patch) | |
tree | 7880559e8ad6f66b65a0fc97dfdf69f491a00e4a /sysdep/unix/krt.c | |
parent | c817b9916f1134f687ba53220d607e6e193cf651 (diff) |
Removed a lot of unused variables.
Please try compiling your code with --enable-warnings to see them. (The
unused parameter warnings are usually bogus, the unused variable ones
are very useful, but gcc is unable to control them separately.)
Diffstat (limited to 'sysdep/unix/krt.c')
-rw-r--r-- | sysdep/unix/krt.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sysdep/unix/krt.c b/sysdep/unix/krt.c index 803077f0..6ef8d906 100644 --- a/sysdep/unix/krt.c +++ b/sysdep/unix/krt.c @@ -544,9 +544,7 @@ sentenced: static void krt_prune(struct krt_proto *p) { - struct proto *pp = &p->p; struct rtable *t = p->p.table; - struct fib_node *f; KRT_TRACE(p, D_EVENTS, "Pruning table %s", t->name); FIB_WALK(&t->fib, f) @@ -605,7 +603,6 @@ void krt_got_route_async(struct krt_proto *p, rte *e, int new) { net *net = e->net; - rte *old = net->routes; int src = e->u.krt.src; switch (src) |