summaryrefslogtreecommitdiffstats
path: root/proto/rip/rip.c
diff options
context:
space:
mode:
Diffstat (limited to 'proto/rip/rip.c')
-rw-r--r--proto/rip/rip.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c
index 52dce5d..6a03ae0 100644
--- a/proto/rip/rip.c
+++ b/proto/rip/rip.c
@@ -241,7 +241,7 @@ rip_rte_update_if_better(rtable *tab, net *net, struct proto *p, rte *new)
rte *old;
old = rte_find(net, p);
- if (!old || rip_rte_better(new, old))
+ if (!old || p->rte_better(new, old))
rte_update(tab, net, p, new);
}
@@ -465,8 +465,6 @@ rip_timer(timer *t)
DBG( "RIP: Broadcasting routing tables\n" );
{
struct rip_interface *rif;
- P->tx_count ++;
-
WALK_LIST( rif, P->interfaces ) {
struct iface *iface = rif->iface;
@@ -477,6 +475,7 @@ rip_timer(timer *t)
rif->triggered = (P->tx_count % 6);
rip_sendto( p, IPA_NONE, 0, rif );
}
+ P->tx_count ++;
}
DBG( "RIP: tick tock done\n" );